From bba2b30cbb78675fcc810e2307de75c3babbc6b1 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Fri, 22 Jul 2022 12:42:33 +0200 Subject: [PATCH] Util: Add helper Util::Json to Util::JSON::Value --- src/util/json/json.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/util/json/json.h 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