11 lines
284 B
C++
11 lines
284 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
|
|
#include <utils/json.hpp>
|
|
using json = nlohmann::json;
|
|
#include <iostream>
|
|
#endif |