culling pointless includes

This commit is contained in:
2025-07-19 01:30:49 +03:00
parent fa8c2f8401
commit 5b9cbd5b03
3 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
#include "Commands.hpp"
#include "../languages/locale_en.hpp"
#include "Base/SQL.hpp" #include "Base/SQL.hpp"
#include "Commands.hpp"
#include <dpp/snowflake.h> #include <dpp/snowflake.h>
void commandPing(const dpp::slashcommand_t &event) { event.reply("Pong"); } void commandPing(const dpp::slashcommand_t &event) { event.reply("Pong"); }

View File

@@ -1,8 +1,4 @@
#include "../languages/locale_en.hpp"
#include "../token.h"
#include "Commands.hpp" #include "Commands.hpp"
#include <dpp/cluster.h>
#include <dpp/dispatcher.h>
void createCommands(const dpp::ready_t &event, dpp::cluster &bot) { void createCommands(const dpp::ready_t &event, dpp::cluster &bot) {
bot.global_command_create( bot.global_command_create(

View File

@@ -1,3 +1,6 @@
#include "../languages/locale_en.hpp"
#include "../token.h"
#include <dpp/cluster.h>
#include <dpp/dispatcher.h> #include <dpp/dispatcher.h>
void createCommands(const dpp::ready_t &event, dpp::cluster &bot); void createCommands(const dpp::ready_t &event, dpp::cluster &bot);