feat: improve db logic and logger(untested)
Some checks failed
build / build (push) Failing after 2m48s

This commit is contained in:
d3m0k1d
2026-01-21 20:44:28 +03:00
parent 7522071a03
commit 341f49c4b4
7 changed files with 98 additions and 15 deletions

View File

@@ -37,7 +37,7 @@ func createTestDBStruct(t *testing.T) *DB {
}
filePath := filepath.Join(tmpDir, "test.db")
sqlDB, err := sql.Open("sqlite3", filePath)
sqlDB, err := sql.Open("sqlite", filePath)
if err != nil {
t.Fatal(err)
}