Update benchmark

This commit is contained in:
yhirose 2024-09-08 10:56:13 -04:00
parent a79c56d06b
commit 7b18ae6f16
5 changed files with 9991 additions and 4 deletions

View file

@ -0,0 +1,12 @@
#include "./httplib.h"
using namespace httplib;
int main() {
Server svr;
svr.Get("/", [](const Request &, Response &res) {
res.set_content("Hello World!", "text/plain");
});
svr.listen("0.0.0.0", 8080);
}