mirror of
https://github.com/maxDcb/C2Core
synced 2026-06-08 15:48:01 +00:00
11 lines
274 B
C++
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;
|
|
}
|