Feat: remove rooms with no action

This commit is contained in:
Grail Finder
2025-07-05 13:06:02 +03:00
parent de2cccf66d
commit 913228844a
4 changed files with 72 additions and 19 deletions

View File

@ -26,7 +26,6 @@ type RepoProvider struct {
DB *sqlx.DB
mu sync.RWMutex
pathToDB string
CardMarksRepo
}
func NewRepoProvider(pathToDB string) *RepoProvider {
@ -44,7 +43,6 @@ func NewRepoProvider(pathToDB string) *RepoProvider {
rp := &RepoProvider{
DB: db,
pathToDB: pathToDB,
CardMarksRepo: NewCardMarksRepo(db),
}
go rp.pingLoop()