add sqlite support

This commit is contained in:
Aleksandr Trushkin
2024-03-12 14:44:22 +03:00
parent 97986063df
commit 938d3cd307
25 changed files with 1105 additions and 118 deletions

View File

@ -0,0 +1,8 @@
package config
import "time"
type Sqlite struct {
DSN string `json:"dsn"`
ShutdownTimeout time.Duration `json:"shutdown_timeout"`
}