mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
13 lines
225 B
C++
13 lines
225 B
C++
|
#include <llarp/service/tag.hpp>
|
||
|
|
||
|
namespace llarp
|
||
|
{
|
||
|
namespace service
|
||
|
{
|
||
|
std::string
|
||
|
Tag::ToString() const
|
||
|
{
|
||
|
return std::string((const char *)data());
|
||
|
}
|
||
|
} // namespace service
|
||
|
} // namespace llarp
|