Taobin-Recipe-Manager/server/config/config.go

11 lines
384 B
Go
Raw Normal View History

2023-09-20 10:39:11 +07:00
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"`
APIKey string `mapstructure:"API_KEY"`
Debug bool `mapstructure:"DEBUG_MODE"`
2023-09-20 10:39:11 +07:00
}