You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
438 B
13 lines
438 B
#ifndef JSON_SEND_H
|
|
#define JSON_SEND_H
|
|
#include <Arduino.h>
|
|
void restartVM(const String &node, const int &vmid);
|
|
void restartContainer(const String &node, const int &containerid);
|
|
void startVM(const String &node, const int &vmid);
|
|
void startContainer(const String &node, const int &containerid);
|
|
void stopVM(const String &node, const int &vmid);
|
|
void stopContainer(const String &node, const int &containerid);
|
|
|
|
|
|
#endif /* JSON_SEND_H */
|