Removed SSL (Use URL instead)

This commit is contained in:
perp 2024-06-03 11:23:03 +01:00
parent d734440fa2
commit 61cb8e7678
2 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@ write_timeout = 10
[database]
driver = "sqlite3"
url = "gopay.db"
ssl = false
max = 30
idle = 30

View File

@ -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"`
}