early-access version 1799

This commit is contained in:
pineappleEA
2021-06-21 18:57:28 +02:00
parent 6924d51f6d
commit 27b7bc6ca2
58 changed files with 51107 additions and 3 deletions

19
externals/cpp-httplib/example/hello.cc vendored Executable file
View File

@@ -0,0 +1,19 @@
//
// hello.cc
//
// Copyright (c) 2019 Yuji Hirose. All rights reserved.
// MIT License
//
#include <httplib.h>
using namespace httplib;
int main(void) {
Server svr;
svr.Get("/hi", [](const Request & /*req*/, Response &res) {
res.set_content("Hello World!", "text/plain");
});
svr.listen("localhost", 8080);
}