audio_trans/examples/simple_reverse_proxy/main.cc

10 lines
251 B
C++
Raw Normal View History

2025-04-07 11:31:21 +08:00
#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;
}