drogon/examples/redis_chat/main.cc

10 lines
186 B
C++
Raw Normal View History

2022-09-13 02:30:51 +00:00
#include <drogon/drogon.h>
int main()
{
drogon::app().addListener("0.0.0.0", 8080);
drogon::app().createRedisClient("127.0.0.1", 6379);
drogon::app().run();
return 0;
}