mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-29 05:16:28 -04:00
9 lines
267 B
Go
9 lines
267 B
Go
//go:build !windows
|
|
|
|
package backend
|
|
|
|
// TargetLocationFormat returns the full location of an entry (given the name) formatted for the current platform
|
|
func TargetLocationFormat(targetLocationIncomplete string) string {
|
|
return EntryRoot + targetLocationIncomplete
|
|
}
|