Files
automatisch/packages/backend/src/apps/postgresql/index.ts

10 lines
222 B
TypeScript

import Authentication from './authentication'
export default class PostgreSQL {
authenticationClient: any;
constructor(connectionData: any) {
this.authenticationClient = new Authentication(connectionData);
}
}