cairo/lib/database/TableService.ts

10 lines
224 B
TypeScript
Raw Normal View History

2024-08-24 12:41:04 -06:00
import { DBPrismaClient } from "./PostgresService";
export default abstract class TableService {
declare pg: DBPrismaClient;
protected abstract table: string;
constructor(pg: DBPrismaClient) {
this.pg = pg;
}
}