recipes2/internal/storage/postgresql/postgresql.go

14 lines
136 B
Go
Raw Normal View History

2024-01-16 21:10:29 +02:00
package postgresql
import (
"github.com/jackc/pgx/v5/pgxpool"
)
type Database struct {
db *pgxpool.Conn
}
func New() Database {
}