// // Copyright (c) 2013-2020 Runner365 // // SPDX-License-Identifier: MIT // #ifndef TIME_HELP_H #define TIME_HELP_H #include #include inline long long now_ms() { return std::chrono::duration_cast( std::chrono::system_clock::now().time_since_epoch()).count(); } #endif //TIME_HELP_H