about summary refs log tree commit diff stats
path: root/internal/config
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index e9300ce..c721424 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -24,9 +24,10 @@ func (u *URL) UnmarshalText(text []byte) (err error) {
 }
 
 type Config struct {
-	BaseURL URL  `toml:"base_url"`
-	CSP     *CSP `toml:"content-security-policy"`
-	Headers map[string]string
+	BaseURL  URL    `toml:"base_url"`
+	DataPath string `toml:"data_path"`
+	CSP      *CSP   `toml:"content-security-policy"`
+	Headers  map[string]string
 }
 
 func GetConfig() (*Config, error) {