working commit

This commit is contained in:
2026-03-16 20:55:36 +02:00
parent 5c1da77f4c
commit 13b1905e05
31 changed files with 177 additions and 151 deletions
+2 -2
View File
@@ -21,14 +21,14 @@ import (
type Database struct {
datapath string
log *logger.Logger
logg *logger.Logger
db *sqlx.DB
}
func NewDatabase(datapath string) *Database {
return &Database{
datapath: datapath,
log: logger.NewLoggerWithSubject("maindb"),
logg: logger.NewLoggerWithSubject("maindb"),
}
}