mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-01-06 19:09:59 -06:00
7 lines
101 B
C++
7 lines
101 B
C++
#include "Loop.hpp"
|
|
|
|
void* runLoop(void* server) {
|
|
((Loop*)server)->run();
|
|
return nullptr;
|
|
}
|