1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat: stored routines edit

This commit is contained in:
2021-01-05 17:25:18 +01:00
parent d695c9f8d2
commit 82fdc0bcd7
13 changed files with 937 additions and 15 deletions

View File

@ -0,0 +1,20 @@
'use strict';
import { ipcRenderer } from 'electron';
export default class {
static getRoutineInformations (params) {
return ipcRenderer.invoke('get-routine-informations', params);
}
static dropRoutine (params) {
return ipcRenderer.invoke('drop-routine', params);
}
static alterRoutine (params) {
return ipcRenderer.invoke('alter-routine', params);
}
static createRoutine (params) {
return ipcRenderer.invoke('create-routine', params);
}
}