chore: delete unused discord app

This commit is contained in:
Ali BARIN
2022-10-09 14:46:51 +02:00
parent ec8e57972a
commit 119650048e
5 changed files with 0 additions and 337 deletions

View File

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