chore: rename Schedule integration as Scheduler

This commit is contained in:
Ali BARIN
2022-05-07 21:25:15 +02:00
parent 54152a3564
commit 9d5060f902
10 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
import Triggers from './triggers';
import {
IService,
IApp,
IJSONObject,
} from '@automatisch/types';
export default class Scheduler implements IService {
triggers: Triggers;
constructor(
appData: IApp,
connectionData: IJSONObject,
parameters: IJSONObject
) {
this.triggers = new Triggers(connectionData, parameters);
}
}