Files
automatisch/packages/backend/src/apps/slack/index.ts
2022-03-15 10:52:54 +03:00

16 lines
374 B
TypeScript

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