#pragma once
public:
test() {
commandName = "test";
helpDescription = "testing purposes!";
embed_data msgEmbed;
msgEmbed.setDescription("------\nSimply enter !test or /test!\n------");
msgEmbed.setTitle("__**test usage:**__");
msgEmbed.setTimeStamp(getTimeAndDate());
msgEmbed.setColor("fe_fe_fe");
helpEmbed = msgEmbed;
}
unique_ptr<base_function> create() {
return makeUnique<test>();
}
virtual void execute(base_function_arguments& args) {
try {
create_guild_channel_data dataPackage;
dataPackage.type = channel_type::Guild_Text;
dataPackage.name = "test channel";
dataPackage.guildId = args.eventData.getGuildId();
dataPackage.reason = "testing purposes!";
for (const auto& value: channels) {
if (value.type == channel_type::GUILD_CATEGORY) {
dataPackage.parentId = value.id;
break;
}
}
std::cout << "the name: " << channel.name << std::endl;
} catch (...) {
rethrowException("test::execute()");
}
}
};
}
static co_routine< channel_data > createGuildChannelAsync(create_guild_channel_data dataPackage)
Creates a new channel_data within a chosen guild_data.
static co_routine< jsonifier::vector< channel_data > > getGuildChannelsAsync(get_guild_channels_data dataPackage)
Collects a list of channels from a chosen guild_data.
The main namespace for the forward-facing interfaces.
Base class for the command classes.