feat: Implement getData query and send a message action for slack

This commit is contained in:
Faruk AYDIN
2022-03-15 02:57:37 +03:00
committed by Ömer Faruk Aydın
parent f8c7b85682
commit 8512528fcf
14 changed files with 305 additions and 92 deletions

View File

@@ -1,4 +1,5 @@
import Authentication from './authentication';
import Data from './data';
import {
IService,
IAuthentication,
@@ -8,8 +9,10 @@ import {
export default class Slack implements IService {
authenticationClient: IAuthentication;
data: Data;
constructor(appData: IApp, connectionData: IJSONObject) {
this.authenticationClient = new Authentication(appData, connectionData);
this.data = new Data(connectionData);
}
}