mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +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
|