2024-03-29 18:05:09 +08:00

10 lines
95 B
Go

package opt
type config struct {
Address string `json:"address"`
}
var (
Cfg = &config{}
)