diff --git a/cmd/config.toml b/cmd/config.toml index aeb79af..34a05c8 100644 --- a/cmd/config.toml +++ b/cmd/config.toml @@ -6,7 +6,6 @@ write_timeout = 10 [database] driver = "sqlite3" url = "gopay.db" -ssl = false max = 30 idle = 30 diff --git a/internal/config/config.go b/internal/config/config.go index 2365ddd..e8f7e98 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -32,7 +32,6 @@ type Server struct { type Database struct { Driver string `toml:"driver"` URL string `toml:"url"` - SSL bool `toml:"ssl"` Max int `toml:"max"` Idle int `toml:"idle"` }