mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
13 lines
220 B
C++
13 lines
220 B
C++
![]() |
#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);
|
||
|
}
|