mirror of
https://gitee.com/an-tao/drogon.git
synced 2024-12-02 11:47:56 +08:00
10 lines
250 B
C++
10 lines
250 B
C++
#include <drogon/drogon.h>
|
|
int main()
|
|
{
|
|
// Set HTTP listener address and port
|
|
drogon::app().loadConfigFile("../config.json");
|
|
// Run HTTP framework,the method will block in the internal event loop
|
|
drogon::app().run();
|
|
return 0;
|
|
}
|