From 61cb8e7678bbfbbfa8903a696ec5ef2b0fc368d7 Mon Sep 17 00:00:00 2001 From: perp Date: Mon, 3 Jun 2024 11:23:03 +0100 Subject: [PATCH] Removed SSL (Use URL instead) --- cmd/config.toml | 1 - internal/config/config.go | 1 - 2 files changed, 2 deletions(-) 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"` }