chore: Remove postgresql app with the old architecture

This commit is contained in:
Faruk AYDIN
2022-10-22 21:09:38 +02:00
parent 2bb058da36
commit b0dc0adf0e
5 changed files with 0 additions and 265 deletions

View File

@@ -1,15 +0,0 @@
import Authentication from './authentication';
import {
IService,
IAuthentication,
IApp,
IJSONObject,
} from '@automatisch/types';
export default class PostgreSQL implements IService {
authenticationClient: IAuthentication;
constructor(appData: IApp, connectionData: IJSONObject) {
this.authenticationClient = new Authentication(appData, connectionData);
}
}