mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
12 lines
139 B
C++
12 lines
139 B
C++
#ifndef LLARP_TIME_HPP
|
|
#define LLARP_TIME_HPP
|
|
|
|
#include <chrono>
|
|
|
|
namespace llarp
|
|
{
|
|
typedef std::chrono::system_clock Clock_t;
|
|
}
|
|
|
|
#endif
|