feat: Implement initial version of processor
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
4a8c3988c2
commit
ba2b5afe2b
@@ -3,13 +3,13 @@ import Triggers from './triggers';
|
||||
import Actions from './actions';
|
||||
|
||||
export default class Twitter {
|
||||
authenticationClient: any
|
||||
triggers: any
|
||||
actions: any
|
||||
authenticationClient: any;
|
||||
triggers: any;
|
||||
actions: any;
|
||||
|
||||
constructor(connectionData: any) {
|
||||
constructor(connectionData: any, parameters: any) {
|
||||
this.authenticationClient = new Authentication(connectionData);
|
||||
this.triggers = new Triggers(connectionData);
|
||||
this.actions = new Actions(connectionData, {});
|
||||
this.actions = new Actions(connectionData, parameters);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user