mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 12:56:31 -04:00
33 lines
782 B
Go
33 lines
782 B
Go
package core
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
var (
|
|
Home, _ = os.UserHomeDir()
|
|
)
|
|
|
|
const (
|
|
LibmuttonVersion = "0.2.D" // untagged releases feature a letter suffix corresponding to the eventual release version, e.g "0.2.A" -> "0.2.0", "0.2.B" -> "0.2.1"
|
|
|
|
FSSpace = "\u259d" // ▝ space/list separator
|
|
FSPath = "\u259e" // ▞ path separator
|
|
FSMisc = "\u259f" // ▟ misc. field separator (if \u259d is already used)
|
|
|
|
AnsiError = "\033[38;5;9m"
|
|
AnsiReset = "\033[0m"
|
|
|
|
ErrorRead = 101
|
|
ErrorWrite = 102
|
|
ErrorSyncProcess = 103
|
|
ErrorServerConnection = 104
|
|
ErrorTargetNotFound = 105
|
|
ErrorTargetExists = 106
|
|
ErrorTargetWrongType = 107
|
|
ErrorDecryption = 108
|
|
ErrorEncryption = 109
|
|
ErrorClipboard = 110
|
|
ErrorOther = 111
|
|
)
|