mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-27 20:36:29 -04:00
17 lines
489 B
Go
17 lines
489 B
Go
//go:build !windows
|
|
|
|
package global
|
|
|
|
import "github.com/rwinkhart/go-boilerplate/back"
|
|
|
|
var (
|
|
EntryRoot = back.Home + "/.local/share/libmutton" // Path to libmutton entry directory
|
|
ConfigDir = back.Home + "/.config/libmutton" // Path to libmutton configuration directory
|
|
ConfigPath = ConfigDir + "/libmutton.ini" // Path to libmutton configuration file
|
|
)
|
|
|
|
const (
|
|
PathSeparator = "/" // Platform-specific path separator
|
|
IsWindows = false // Platform indicator
|
|
)
|