mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
12 lines
155 B
C++
12 lines
155 B
C++
#ifndef LLARP_ROUTER_ID_HPP
|
|
#define LLARP_ROUTER_ID_HPP
|
|
|
|
#include <llarp/aligned.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
using RouterID = AlignedBuffer< 32 >;
|
|
}
|
|
|
|
#endif
|