lokinet/llarp/util/status.hpp

22 lines
347 B
C++
Raw Normal View History

2019-02-08 19:43:25 +00:00
#ifndef LLARP_UTIL_STATUS_HPP
#define LLARP_UTIL_STATUS_HPP
2019-02-19 09:43:17 +00:00
2019-02-11 17:14:43 +00:00
#include <util/string_view.hpp>
2019-02-19 09:43:17 +00:00
#include <nlohmann/json.hpp>
2019-02-08 19:43:25 +00:00
#include <vector>
2019-02-08 22:44:21 +00:00
#include <string>
2019-02-11 17:14:43 +00:00
#include <algorithm>
#include <absl/types/variant.h>
2019-02-08 19:43:25 +00:00
namespace llarp
{
namespace util
{
using StatusObject = nlohmann::json;
2019-02-08 19:43:25 +00:00
} // namespace util
} // namespace llarp
#endif