9 lines
131 B
Go
9 lines
131 B
Go
package config
|
|
|
|
type Config struct {
|
|
Server struct {
|
|
Port string `yaml:"port"`
|
|
Host string `yaml:"host"`
|
|
} `yaml:"server"`
|
|
}
|