diff --git a/src/main.cpp b/src/main.cpp index 050cf68..79cc23d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,6 +10,7 @@ #include #include "Version.h" #include +#include std::vector lua_scripts_in_folder(const std::string& path_str) { std::vector scripts; @@ -105,7 +106,10 @@ int main(int argc, char* argv[]) { spdlog::info("All services loaded."); - while (true) {} + while (true) { + using namespace std::chrono_literals; + std::this_thread::sleep_for(100ms); + } return 0; } \ No newline at end of file