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