Files
maxDcb-C2Core/beacon/tests/testBeaconGithub.cpp
2025-09-02 16:18:35 +02:00

11 lines
274 B
C++

#define CPPHTTPLIB_OPENSSL_SUPPORT
#include "BeaconGithub.hpp"
int main() {
std::string config = R"({"xorKey":"key","ModulesConfig":{}})";
std::string project = "project";
std::string token = "token";
BeaconGithub b(config, project, token);
return 0;
}