// Copyright (c) Tribufu. All Rights Reserved. #pragma once #include #include #ifdef MINTAKA_CPP #include using json = nlohmann::json; namespace mintaka { namespace Json { static std::string from_string(std::string &str) { return json::parse(str); } static std::string to_string(json value) { return value.dump(); } }; } #endif