#pragma once #include #if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L) constexpr static bool cpp_17 = true; #else constexpr static bool cpp_17 = false; #endif template inline const char* str(const T& v) { return ""; } template <> inline const char* str(const bool& v) { return v ? "true" : "false"; } #include extern std::string base62uuid(int l = 6);