7 lines
103 B
Go
7 lines
103 B
Go
|
package config
|
||
|
|
||
|
type http struct {
|
||
|
Port uint `yaml:"port"`
|
||
|
Endpoint string `yaml:"endpoint"`
|
||
|
}
|