lokinet/llarp/util/status.hpp
Jason Rhinelander 1697bf90fe C++17
Compiles with C++17, replaces ghc::filesystem with std::filesystem,
nonstd::optional with std::optional, and llarp::string_view with
std::string_view.
2020-05-01 17:43:27 -03:00

15 lines
224 B
C++

#ifndef LLARP_UTIL_STATUS_HPP
#define LLARP_UTIL_STATUS_HPP
#include <nlohmann/json.hpp>
namespace llarp
{
namespace util
{
using StatusObject = nlohmann::json;
} // namespace util
} // namespace llarp
#endif