mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
17 lines
219 B
C++
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
|