#pragma once

#include <nlohmann/json.hpp>

namespace json {
      static inline auto parse(const std::vector<char> & buff) {
            return nlohmann::json::parse(buff.begin(), buff.end());
      }

      using obj = nlohmann::json;
}