- Automatic Ban CC Attack
- Record User Footstep by Clientid
- etc
#include "cyno.h"
int main() {
crow::SimpleApp app;
CROW_ROUTE(app, "/")([](const crow::request& req, crow::response& res) {
CynoHandler::handle_request(req, res);
});
app.port(8080).multithreaded().run();
}
Under GPL-3.0 License.