mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
14 lines
214 B
C++
14 lines
214 B
C++
#include <service/tag.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
std::string
|
|
Tag::ToString() const
|
|
{
|
|
return std::string(begin(), end());
|
|
}
|
|
} // namespace service
|
|
} // namespace llarp
|