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