grain/config/types/serverConfig.go

12 lines
260 B
Go
Raw Normal View History

2024-07-31 16:01:18 +00:00
package config
type ServerConfig struct {
MongoDB struct {
URI string `yaml:"uri"`
Database string `yaml:"database"`
} `yaml:"mongodb"`
Server struct {
Port string `yaml:"port"`
} `yaml:"server"`
RateLimit RateLimitConfig `yaml:"rate_limit"`
}