mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2025-12-31 07:49:35 -06:00
7 lines
101 B
C++
7 lines
101 B
C++
#include "Loop.hpp"
|
|
|
|
void* runLoop(void* server) {
|
|
((Loop*)server)->run();
|
|
return nullptr;
|
|
}
|