mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2026-01-27 12:50:39 +03:00
16 lines
352 B
C++
16 lines
352 B
C++
#pragma once
|
|
|
|
#ifndef INTERFACE_WEBHOOK_H
|
|
#define INTERFACE_WEBHOOK_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <functional>
|
|
#include <ClassFlowDefineTypes.h>
|
|
|
|
void WebhookInit(std::string _webhookURI, std::string _apiKey);
|
|
bool WebhookPublish(std::vector<NumberPost *> *numbers);
|
|
void WebhookUploadPic(ImageData *Img);
|
|
|
|
#endif // INTERFACE_WEBHOOK_H
|