sk-matrix-project/backend/golang/matrix-common/constants/const.go
2023-03-24 11:34:13 +08:00

13 lines
141 B
Go

package constants
const (
ConfigFileName = "config"
ConfigType = "toml"
)
var ConfigPaths = []string{
".",
"./conf",
"/config",
}