mirror of
https://github.com/Relintai/broken_seals_site.git
synced 2025-04-21 07:51:18 +02:00
11 lines
318 B
C++
11 lines
318 B
C++
#include <drogon/drogon.h>
|
|
int main() {
|
|
//Set HTTP listener address and port
|
|
drogon::app().addListener("0.0.0.0",80);
|
|
//Load config file
|
|
//drogon::app().loadConfigFile("../config.json");
|
|
//Run HTTP framework,the method will block in the internal event loop
|
|
drogon::app().run();
|
|
return 0;
|
|
}
|