Files
automatisch/packages/backend/src/apps/slack/data.ts

11 lines
268 B
TypeScript

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