8 lines
167 B
Go
8 lines
167 B
Go
package config
|
|
|
|
type Server struct {
|
|
Port string `mapstructure:"port"`
|
|
BaseUrl string `mapstructure:"common-url"`
|
|
LocalUrl string `mapstructure:"local-url"`
|
|
}
|