sparkle/libs/utils/types.hpp
2025-01-14 16:14:01 +05:00

13 lines
333 B
C++

#ifndef UTILS_TYPES_HPP_
#define UTILS_TYPES_HPP_
#define dapi string("/api/v10")
#define j(...) {{__VA_ARGS__}}
#define je(...) {__VA_ARGS__}
#define g(x, y) (std::get<x>(y))
#define ALL_INTENTS 131071
#define RELEASE
#include <utils/json.hpp>
#include <utils/logs.hpp>
#include <utils/enums.hpp>
using json = nlohmann::json;
#endif