8 lines
279 B
Go
8 lines
279 B
Go
package config
|
|
|
|
type ServerConfig struct {
|
|
ServerPort uint `mapstructure:"SERVER_PORT"`
|
|
AllowedOrigins string `mapstructure:"ALLOWED_ORIGINS"`
|
|
ClientRedirectURL string `mapstructure:"CLIENT_REDIRECT_URL"`
|
|
ServerDomain string `mapstructure:"SERVER_DOMAIN"`
|
|
}
|