12 lines
144 B
Go
12 lines
144 B
Go
package repos
|
|
|
|
import "github.com/jackc/pgx/v5/pgxpool"
|
|
|
|
type AllRepos interface {
|
|
RoomsRepo
|
|
}
|
|
|
|
type RepoProvider struct {
|
|
DB *pgxpool.Pool
|
|
}
|