refactor: Adjust create tweet action to use new http client

This commit is contained in:
Faruk AYDIN
2022-08-20 00:49:01 +03:00
committed by Ali BARIN
parent 17010f9283
commit cd6c5216ff
5 changed files with 56 additions and 19 deletions

View File

@@ -25,6 +25,6 @@ export default class Twitter implements IService {
this.authenticationClient = new Authentication(this.client);
this.triggers = new Triggers(this.client);
// this.actions = new Actions(connectionData, parameters);
this.actions = new Actions(this.client);
}
}