mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
15 lines
207 B
C++
15 lines
207 B
C++
|
#ifndef __ABYSS_JSON_JSON_HPP
|
||
|
#define __ABYSS_JSON_JSON_HPP
|
||
|
|
||
|
#include <rapidjson/document.h>
|
||
|
|
||
|
namespace abyss
|
||
|
{
|
||
|
namespace json
|
||
|
{
|
||
|
typedef rapidjson::Document Object;
|
||
|
}
|
||
|
} // namespace abyss
|
||
|
|
||
|
#endif
|