Files
automatisch/packages/backend/src/apps/twitter/actions/create-tweet.ts

18 lines
322 B
TypeScript

import TwitterClient from '../client';
export default class CreateTweet {
client: TwitterClient;
constructor(client: TwitterClient) {
this.client = client;
}
async run() {
const tweet = await this.client.createTweet.run(
this.client.step.parameters.tweet as string
);
return tweet;
}
}