mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-27 20:36:29 -04:00
19 lines
719 B
Go
19 lines
719 B
Go
//go:build windows
|
|
|
|
package global
|
|
|
|
import "github.com/rwinkhart/go-boilerplate/back"
|
|
|
|
var (
|
|
EntryRoot = back.Home + "\\AppData\\Local\\libmutton\\entries" // Path to libmutton entry directory
|
|
CfgDir = back.Home + "\\AppData\\Local\\libmutton\\config" // Path to libmutton configuration directory
|
|
CfgPath = CfgDir + "\\libmuttoncfg.json" // Path to libmutton configuration file
|
|
AgeDir = CfgDir + "\\age" // Path to libmutton password age directory
|
|
SSHDir = back.Home + "\\.ssh" // Path to SSH directory
|
|
)
|
|
|
|
const (
|
|
PathSeparator = "\\" // Platform-specific path separator
|
|
IsWindows = true // Platform indicator
|
|
)
|