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
|
|
|
|
2019-03-02 02:27:38 +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
|
|
|
|
{
|
2019-08-19 09:33:26 +00:00
|
|
|
using StatusObject = nlohmann::json;
|
2019-02-08 19:43:25 +00:00
|
|
|
} // namespace util
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|