chore: remove unused twilio app

This commit is contained in:
Ali BARIN
2022-10-09 15:17:02 +02:00
parent 12bbcd7887
commit 56b7763488
4 changed files with 0 additions and 186 deletions

View File

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