mirror of
https://github.com/1f349/site-hosting.git
synced 2025-01-21 06:36:33 +00:00
12 lines
182 B
Go
12 lines
182 B
Go
package conf
|
|
|
|
type Conf struct {
|
|
Listen ListenConf `yaml:"listen"`
|
|
DB string `yaml:"db"`
|
|
}
|
|
|
|
type ListenConf struct {
|
|
Http string `yaml:"http"`
|
|
Api string `yaml:"api"`
|
|
}
|