Files
automatisch/packages/backend/src/apps/discord/index.ts
2022-03-07 18:26:31 +03:00

16 lines
376 B
TypeScript

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);
}
}