2025-04-27 22:14:21 +08:00

11 lines
92 B
Go

package opt
type config struct {
Debug bool
Address string
}
var (
Cfg = &config{}
)