10 lines
95 B
Go
Raw Normal View History

2024-03-29 18:05:09 +08:00
package opt
type config struct {
Address string `json:"address"`
}
var (
Cfg = &config{}
)