Skip to content

Commit 8e025ff

Browse files
committed
move help ping logic to its own package
1 parent 5791bfe commit 8e025ff

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/main/java/net/discordjug/javabot/systems/help/commands/HelpCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package net.discordjug.javabot.systems.help.commands;
22

3+
import net.discordjug.javabot.systems.help.commands.notify.HelpPingSubcommand;
34
import net.dv8tion.jda.api.interactions.commands.build.Commands;
45
import xyz.dynxsty.dih4jda.interactions.commands.application.SlashCommand;
56

src/main/java/net/discordjug/javabot/systems/help/ClearOldHelpNotificationJob.java renamed to src/main/java/net/discordjug/javabot/systems/help/commands/notify/ClearOldHelpNotificationJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.discordjug.javabot.systems.help;
1+
package net.discordjug.javabot.systems.help.commands.notify;
22

33
import java.nio.charset.StandardCharsets;
44
import java.time.OffsetDateTime;

src/main/java/net/discordjug/javabot/systems/help/commands/HelpPingSubcommand.java renamed to src/main/java/net/discordjug/javabot/systems/help/commands/notify/HelpPingSubcommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.discordjug.javabot.systems.help.commands;
1+
package net.discordjug.javabot.systems.help.commands.notify;
22

33
import net.discordjug.javabot.annotations.AutoDetectableComponentHandler;
44
import net.discordjug.javabot.data.config.BotConfig;

0 commit comments

Comments
 (0)