mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
fe61367a87
There is a huge pile of unnecessary machinery here that can be solved with a few lambdas and some member function pointer type deduction.
21 lines
315 B
C++
21 lines
315 B
C++
#ifndef LLARP_UTIL_STATUS_HPP
|
|
#define LLARP_UTIL_STATUS_HPP
|
|
|
|
#include <util/string_view.hpp>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <algorithm>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace util
|
|
{
|
|
using StatusObject = nlohmann::json;
|
|
} // namespace util
|
|
} // namespace llarp
|
|
|
|
#endif
|