Files
2025-09-02 16:18:35 +02:00

10 lines
226 B
C++

#include "BeaconSmb.hpp"
int main() {
std::string config = R"({"xorKey":"key","ModulesConfig":{}})";
std::string host = "localhost";
std::string pipe = "test";
BeaconSmb b(config, host, pipe);
return 0;
}