Files
automatisch/packages/backend/src/apps/twitter/actions.ts
2022-03-07 18:26:31 +03:00

11 lines
305 B
TypeScript

import CreateTweet from './actions/create-tweet';
import { IJSONObject } from '@automatisch/types';
export default class Actions {
createTweet: CreateTweet;
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
this.createTweet = new CreateTweet(connectionData, parameters);
}
}