13 lines
196 B
Go
13 lines
196 B
Go
package database
|
|
|
|
import (
|
|
"queryorchestration/internal/database/repository"
|
|
|
|
"github.com/jackc/pgx/v5/pgxpool"
|
|
)
|
|
|
|
type Connection struct {
|
|
Pool *pgxpool.Pool
|
|
Queries *repository.Queries
|
|
}
|