9 lines
232 B
Go
9 lines
232 B
Go
package config
|
|
|
|
type Server struct {
|
|
Port string `mapstructure:"port"`
|
|
BaseUrl string `mapstructure:"common-url"`
|
|
LocalUrl string `mapstructure:"local-url"`
|
|
SelfOrderUrl string `mapstructure:"self-order-url"`
|
|
}
|