9 lines
187 B
Go
9 lines
187 B
Go
|
package conf
|
||
|
|
||
|
type ListenYaml struct {
|
||
|
Web string `yaml:"web"`
|
||
|
WebMethod string `yaml:"webMethod"`
|
||
|
WebNetwork string `yaml:"webNetwork"`
|
||
|
Identify bool `yaml:"identify"`
|
||
|
}
|