mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-28 04:46:41 -04:00
12 lines
372 B
Go
12 lines
372 B
Go
//go:build windows
|
|
|
|
package offline
|
|
|
|
// EntryRoot path to libmutton entry directory
|
|
var EntryRoot = home + "\\AppData\\Local\\libmutton\\entries"
|
|
var ConfigDir = home + "\\AppData\\Local\\libmutton"
|
|
var ConfigPath = ConfigDir + "\\libmutton.ini"
|
|
|
|
// PathSeparator defines the character used to separate directories in a path (platform-specific)
|
|
const PathSeparator = "\\"
|