mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 04:46:42 -04:00
15 lines
436 B
Go
15 lines
436 B
Go
//go:build !windows
|
|
|
|
package backend
|
|
|
|
// EntryRoot path to libmutton entry directory
|
|
var EntryRoot = Home + "/.local/share/libmutton"
|
|
var ConfigDir = Home + "/.config/libmutton"
|
|
var ConfigPath = ConfigDir + "/libmutton.ini"
|
|
|
|
// PathSeparator defines the character used to separate directories in a path (platform-specific)
|
|
const (
|
|
PathSeparator = "/"
|
|
Windows = false // TODO temporary, remove after native sync is implemented
|
|
)
|