10 lines
224 B
TypeScript
10 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;
|
||
|
}
|
||
|
}
|