niki/domain/wallet/repository/postgres/db.go

16 lines
220 B
Go

package postgres
import "git.gocasts.ir/ebhomengo/niki/pkg/database/postgres"
type Config struct {
}
type DB struct {
conn *postgres.DB
Config Config
}
func New(conn *postgres.DB) *DB {
return &DB{conn: conn}
}