oscuro/source/commands.hpp
2024-03-14 13:06:52 +05:00

19 lines
279 B
C++

#pragma once
#include <functional>
#include <nlohmann/json.hpp>
#include "bot.hpp"
using json = nlohmann::json;
using event = std::function<void(const json)>;
auto help(const std::shared_ptr<Bot>& bot)
{
return [&bot](const dpp::MessageCreateEvent& msg)
{
};
}