2025-05-12 15:54:40 +08:00

11 lines
92 B
Go

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