interface_webhook.h 352 B

123456789101112131415
  1. #pragma once
  2. #ifndef INTERFACE_WEBHOOK_H
  3. #define INTERFACE_WEBHOOK_H
  4. #include <string>
  5. #include <map>
  6. #include <functional>
  7. #include <ClassFlowDefineTypes.h>
  8. void WebhookInit(std::string _webhookURI, std::string _apiKey);
  9. bool WebhookPublish(std::vector<NumberPost *> *numbers);
  10. void WebhookUploadPic(ImageData *Img);
  11. #endif // INTERFACE_WEBHOOK_H