hello.cc 330 B

12345678910111213141516171819
  1. //
  2. // hello.cc
  3. //
  4. // Copyright (c) 2019 Yuji Hirose. All rights reserved.
  5. // MIT License
  6. //
  7. #include <httplib.h>
  8. using namespace httplib;
  9. int main(void) {
  10. Server svr;
  11. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  12. res.set_content("Hello World!", "text/plain");
  13. });
  14. svr.listen("localhost", 8080);
  15. }