14 lines
136 B
Go
14 lines
136 B
Go
|
package postgresql
|
||
|
|
||
|
import (
|
||
|
"github.com/jackc/pgx/v5/pgxpool"
|
||
|
)
|
||
|
|
||
|
type Database struct {
|
||
|
db *pgxpool.Conn
|
||
|
}
|
||
|
|
||
|
func New() Database {
|
||
|
|
||
|
}
|