10 lines
199 B
Go
10 lines
199 B
Go
package config
|
|
|
|
const (
|
|
confdirPath = "/usr/local/etc/mbase"
|
|
rundirPath = "/var/run/mbase"
|
|
logdirPath = "/var/log/mbase"
|
|
datadirPath = "/var/data/mbase"
|
|
packageVersion = "0.0.1"
|
|
)
|