Files
libmutton/src/backend/targetLocationFormatUNIX.go
T

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
}