mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
12 lines
153 B
C++
12 lines
153 B
C++
#include "crow.h"
|
|
|
|
int main()
|
|
{
|
|
crow::SimpleApp app;
|
|
|
|
CROW_ROUTE(app, "/")
|
|
([]() { return "Hello, world!"; });
|
|
|
|
app.port(18080).run();
|
|
}
|