package ent import ( "context" sharedpostgres "knowfoolery/backend/shared/infra/database/postgres" ) // Client aliases shared postgres client. type Client = sharedpostgres.Client // NewClient creates postgres pooled client. func NewClient(ctx context.Context, cfg sharedpostgres.Config) (*Client, error) { return sharedpostgres.NewClient(ctx, cfg) }