drogon/lib/tests/MainLoopTest.cc

12 lines
232 B
C++
Raw Normal View History

#include <drogon/drogon.h>
#include <thread>
int main()
{
std::thread([]() {
drogon::app().getLoop()->runEvery(1, []() {
std::cout << "!" << std::endl;
});
}).detach();
drogon::app().run();
}