mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-28 04:46:41 -04:00
11 lines
295 B
Go
11 lines
295 B
Go
//go:build windows
|
|
|
|
package backend
|
|
|
|
import "strings"
|
|
|
|
// TargetLocationFormat returns the target location of an entry formatted for the current platform
|
|
func TargetLocationFormat(entryName string) string {
|
|
return EntryRoot + PathSeparator + strings.ReplaceAll(entryName, "/", PathSeparator)
|
|
}
|