1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/util/time.hpp

17 lines
219 B
C++

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