mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 04:46:42 -04:00
9 lines
238 B
Go
9 lines
238 B
Go
//go:build !windows
|
|
|
|
package backend
|
|
|
|
// TargetLocationFormat returns the target location of an entry formatted for the current platform
|
|
func TargetLocationFormat(entryName string) string {
|
|
return EntryRoot + PathSeparator + entryName
|
|
}
|