1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/time.hpp
2018-11-19 22:45:37 +00:00

16 lines
220 B
C++

#ifndef LLARP_TIME_HPP
#define LLARP_TIME_HPP
#include <llarp/types.hpp>
#include <chrono>
namespace llarp
{
using Clock_t = std::chrono::system_clock;
llarp_time_t
time_now_ms();
} // namespace llarp
#endif