fix: run linter
All checks were successful
Backend ci / build (push) Successful in 7m53s

This commit is contained in:
d3m0k1d
2026-02-03 18:27:28 +03:00
parent 503f18d976
commit 254673f2d8
3 changed files with 5 additions and 1 deletions

View File

@@ -8,7 +8,9 @@ import (
_ "modernc.org/sqlite"
)
var db_path = os.Getenv("DB_PATH") + "?_journal_mode=WAL&_busy_timeout=5000&_synchronous=NORMAL&_cache_size=2000&_foreign_keys=ON"
var db_path = os.Getenv(
"DB_PATH",
) + "?_journal_mode=WAL&_busy_timeout=5000&_synchronous=NORMAL&_cache_size=2000&_foreign_keys=ON"
func CreateTables() error {
logger := logger.New(false)