feat(ipub,soundtrck): on screen threshold trigger to start playing

This commit is contained in:
Guz
2025-11-10 15:03:01 -03:00
parent f76be67247
commit d90cebb478
9 changed files with 204 additions and 59 deletions

17
repository/role.go Normal file
View File

@@ -0,0 +1,17 @@
package repository
import (
"context"
"database/sql"
"log/slog"
"code.capytal.cc/loreddev/x/tinyssert"
)
type RoleRepository struct {
db *sql.DB
ctx context.Context
log *slog.Logger
assert tinyssert.Assertions
}