Files
utodo/internal/opt/opt.go
2025-07-13 22:57:57 +08:00

19 lines
215 B
Go

package opt
type config struct {
Debug bool
Version string
Name string
Svc struct {
Address string
DBFile string
Cache string
}
}
var Cfg = &config{}
func Init() {
Cfg.Version = Version
}