stdstring port = 8089; auto http_server = stdshared_ptrHttpServernew HttpServer; http_server-Initport; add handler
// Example handler that returns "Hello, World!" for any request http_server->AddHandler("/", [](const HttpRequest& req) { HttpResponse res; res.SetStatus(200); res.SetBody("Hello, World!"); return res; });
// Start the server http_server->Start();
原文地址: https://www.cveoy.top/t/topic/bVfa 著作权归作者所有。请勿转载和采集!