Files
automatisch/packages/backend/src/apps/slack/actions.ts
2022-03-17 22:27:59 +03:00

14 lines
379 B
TypeScript

import SendMessageToChannel from './actions/send-message-to-channel';
import { IJSONObject } from '@automatisch/types';
export default class Actions {
sendMessageToChannel: SendMessageToChannel;
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
this.sendMessageToChannel = new SendMessageToChannel(
connectionData,
parameters
);
}
}