gotify-client/constants/const.go

13 lines
141 B
Go
Raw Normal View History

2023-04-12 14:45:45 +08:00
package constants
const (
ConfigFileName = "config"
ConfigType = "toml"
)
var ConfigPaths = []string{
".",
"./conf",
"/config",
}