Files
AI-on-the-edge-device/code/components/jomjol_webhook/interface_webhook.h
michael 4905663933 test1
2026-01-17 02:49:32 +01:00

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