diff options
Diffstat (limited to 'backend/config.go')
| -rw-r--r-- | backend/config.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/backend/config.go b/backend/config.go index c5a44ef..b1fcbd8 100644 --- a/backend/config.go +++ b/backend/config.go @@ -18,12 +18,13 @@ type Logo struct { } type Config struct { - Domain string `toml:"domain"` - Name string `toml:"name"` - Description string `toml:"description"` - Links []Link `toml:"links"` - Logo Logo `toml:"logo"` - LogFolder string `toml:"log_folder"` + Domain string `toml:"domain"` + Name string `toml:"name"` + Description string `toml:"description"` + Links []Link `toml:"links"` + Logo Logo `toml:"logo"` + LogFolder string `toml:"log_folder"` + Quotes []string `toml:"quotes"` } func (c *Config) DefaultValues() { |
