feat: Implement getData query and send a message action for slack
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
f8c7b85682
commit
8512528fcf
10
packages/backend/src/apps/slack/data.ts
Normal file
10
packages/backend/src/apps/slack/data.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import ListChannels from './data/list-channels';
|
||||
import { IJSONObject } from '@automatisch/types';
|
||||
|
||||
export default class Data {
|
||||
listChannels: ListChannels;
|
||||
|
||||
constructor(connectionData: IJSONObject) {
|
||||
this.listChannels = new ListChannels(connectionData);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user