(protected env: T)
| 11 | db: NeonDatabase<typeof schema> |
| 12 | |
| 13 | constructor(protected env: T) { |
| 14 | this.db = connectDB(env.DATABASE_URL, env.COMULINE_ENV) |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | export const connectDB = (url: string, env: string) => { |
nothing calls this directly
no test coverage detected