working commit

This commit is contained in:
2026-06-05 18:35:25 +02:00
parent 16c52424ed
commit 557aea269d
13 changed files with 82 additions and 73 deletions
+3 -3
View File
@@ -4,17 +4,17 @@ import (
"sync/atomic"
"time"
"mbase/app/database"
"mbase/app/maindb"
"mbase/pkg/logger"
)
type LogicConfig struct {
Database *database.Database
Database *maindb.Database
}
type Logic struct {
log *logger.Logger
db *database.Database
db *maindb.Database
dumpingSem atomic.Bool
restoringSem atomic.Bool
}