cairo/lib/database/TableService.ts
Dunemask 0fc5f05b6a
Some checks failed
Deploy Edge / deploy-edge (push) Failing after 2s
S3 Repo Backup / s3-repo-backup (push) Failing after 2s
[INIT] Initial Project Structure
2024-08-24 12:41:04 -06:00

9 lines
224 B
TypeScript

import { DBPrismaClient } from "./PostgresService";
export default abstract class TableService {
declare pg: DBPrismaClient;
protected abstract table: string;
constructor(pg: DBPrismaClient) {
this.pg = pg;
}
}