bluebell/conf/conf.go

12 lines
182 B
Go
Raw Normal View History

2024-08-10 13:28:30 +01:00
package conf
type Conf struct {
Listen ListenConf `yaml:"listen"`
DB string `yaml:"db"`
2024-08-10 13:28:30 +01:00
}
type ListenConf struct {
Http string `yaml:"http"`
Api string `yaml:"api"`
2024-08-10 13:28:30 +01:00
}