diff --git a/src/util/json/json.h b/src/util/json/json.h new file mode 100644 index 0000000..a185daf --- /dev/null +++ b/src/util/json/json.h @@ -0,0 +1,18 @@ +/* + * Copyright (C) 2022 Riyyi + * + * SPDX-License-Identifier: MIT + */ + +#ifndef UTIL_JSON_JSON_H +#define UTIL_JSON_JSON_H + +#include "util/json/value.h" + +namespace Util { + +using Json = Util::JSON::Value; + +} // namespace Util + +#endif // UTIL_JSON_JSON_H