mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 12:56:31 -04:00
15 lines
457 B
Go
15 lines
457 B
Go
//go:build windows
|
|
|
|
package core
|
|
|
|
var (
|
|
EntryRoot = Home + "\\AppData\\Local\\libmutton\\entries" // Path to libmutton entry directory
|
|
ConfigDir = Home + "\\AppData\\Local\\libmutton\\config" // Path to libmutton configuration directory
|
|
ConfigPath = ConfigDir + "\\libmutton.ini" // Path to libmutton configuration file
|
|
)
|
|
|
|
const (
|
|
PathSeparator = "\\" // Platform-specific path separator
|
|
IsWindows = true // Platform indicator
|
|
)
|