10 lines
186 B
C++
10 lines
186 B
C++
#ifndef BMHTTP_H
|
|
#define BMHTTP_H
|
|
#include <string>
|
|
#include "cJSON.h"
|
|
|
|
extern std::string webToken;
|
|
|
|
bool httpGET(std::string endpoint, std::string token, cJSON* &JSONresponse);
|
|
|
|
#endif |