feat: eslint 적용 및 관련 코드 일괄 수정
This commit is contained in:
@@ -10,10 +10,5 @@ export type { PrismaClient as GatewayPrismaClient } from '../prisma/generated/ga
|
||||
import type { PostgresConfig, PostgresConnector } from './postgres.js';
|
||||
import { createPostgresConnector } from './postgres.js';
|
||||
|
||||
export const createGatewayPostgresConnector = (
|
||||
config: PostgresConfig
|
||||
): PostgresConnector<GatewayPrismaClient> =>
|
||||
createPostgresConnector(
|
||||
config,
|
||||
(options) => new GatewayPrismaClient(options)
|
||||
);
|
||||
export const createGatewayPostgresConnector = (config: PostgresConfig): PostgresConnector<GatewayPrismaClient> =>
|
||||
createPostgresConnector(config, (options) => new GatewayPrismaClient(options));
|
||||
|
||||
Reference in New Issue
Block a user