package repos import "github.com/jackc/pgx/v5/pgxpool" type AllRepos interface { RoomsRepo } type RepoProvider struct { DB *pgxpool.Pool }