mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
1697bf90fe
Compiles with C++17, replaces ghc::filesystem with std::filesystem, nonstd::optional with std::optional, and llarp::string_view with std::string_view.
15 lines
224 B
C++
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
|