Line data Source code
1 : #include "Com/HTTPServer.hpp" 2 : 3 : using namespace std; 4 : using namespace Com; 5 : 6 : /**yaml GET /hello 7 : * summary: Ping server. 8 : * tags: 9 : * - Global 10 : */ 11 0 : void HTTPServer::helloGet(const httplib::Request &, httplib::Response &res) { 12 0 : res.set_content("Hello world!\n", "text/plain"); 13 0 : }