aboutsummaryrefslogtreecommitdiff
path: root/backend/config.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-10-03 10:53:35 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-10-03 10:53:35 +0200
commita2dad61a48af63db2fd00bee3f6ea487720d33bd (patch)
tree641c686472c5748369884fa8a6097f874ab78146 /backend/config.go
parent620b03459751a17632f6165b289206dc6d86ed7c (diff)
feat(backend): customize quotes
Diffstat (limited to 'backend/config.go')
-rw-r--r--backend/config.go13
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() {