mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
12 lines
260 B
Go
12 lines
260 B
Go
|
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"`
|
||
|
}
|