File tree Expand file tree Collapse file tree 15 files changed +33
-33
lines changed
src/main/java/net/javadiscord/javabot Expand file tree Collapse file tree 15 files changed +33
-33
lines changed Original file line number Diff line number Diff line change 2828import net .javadiscord .javabot .systems .moderation .server_lock .ServerLockManager ;
2929import net .javadiscord .javabot .systems .qotw .commands .questions_queue .AddQuestionSubcommand ;
3030import net .javadiscord .javabot .systems .qotw .submissions .SubmissionInteractionManager ;
31- import net .javadiscord .javabot .systems .self_roles .SelfRoleInteractionManager ;
31+ import net .javadiscord .javabot .systems .staff_commands . self_roles .SelfRoleInteractionManager ;
3232import net .javadiscord .javabot .systems .staff_commands .embeds .AddEmbedFieldSubcommand ;
3333import net .javadiscord .javabot .systems .staff_commands .embeds .CreateEmbedSubcommand ;
3434import net .javadiscord .javabot .systems .staff_commands .embeds .EditEmbedSubcommand ;
3535import net .javadiscord .javabot .systems .starboard .StarboardManager ;
36- import net .javadiscord .javabot .systems .tags .CustomTagManager ;
37- import net .javadiscord .javabot .systems .tags .commands .CreateCustomTagSubcommand ;
38- import net .javadiscord .javabot .systems .tags .commands .EditCustomTagSubcommand ;
36+ import net .javadiscord .javabot .systems .staff_commands . tags .CustomTagManager ;
37+ import net .javadiscord .javabot .systems .staff_commands . tags .commands .CreateCustomTagSubcommand ;
38+ import net .javadiscord .javabot .systems .staff_commands . tags .commands .EditCustomTagSubcommand ;
3939import net .javadiscord .javabot .systems .user_commands .leaderboard .ExperienceLeaderboardSubcommand ;
4040import net .javadiscord .javabot .tasks .MetricsUpdater ;
4141import net .javadiscord .javabot .tasks .PresenceUpdater ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .self_roles ;
1+ package net .javadiscord .javabot .systems .staff_commands . self_roles ;
22
33import com .dynxsty .dih4jda .interactions .commands .SlashCommand ;
44import net .dv8tion .jda .api .EmbedBuilder ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .self_roles ;
1+ package net .javadiscord .javabot .systems .staff_commands . self_roles ;
22
33import com .dynxsty .dih4jda .interactions .commands .SlashCommand ;
44import net .dv8tion .jda .api .EmbedBuilder ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .self_roles ;
1+ package net .javadiscord .javabot .systems .staff_commands . self_roles ;
22
33import com .dynxsty .dih4jda .interactions .commands .SlashCommand ;
44import net .dv8tion .jda .api .interactions .commands .DefaultMemberPermissions ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .self_roles ;
1+ package net .javadiscord .javabot .systems .staff_commands . self_roles ;
22
33import com .dynxsty .dih4jda .interactions .ComponentIdBuilder ;
44import com .dynxsty .dih4jda .interactions .components .ButtonHandler ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .tags ;
1+ package net .javadiscord .javabot .systems .staff_commands . tags ;
22
33import com .dynxsty .dih4jda .util .AutoCompleteUtils ;
44import lombok .extern .slf4j .Slf4j ;
1010import net .dv8tion .jda .api .interactions .commands .OptionMapping ;
1111import net .dv8tion .jda .api .requests .RestAction ;
1212import net .dv8tion .jda .api .requests .restaction .interactions .AutoCompleteCallbackAction ;
13- import net .javadiscord .javabot .systems .tags .dao .CustomTagRepository ;
14- import net .javadiscord .javabot .systems .tags .model .CustomTag ;
13+ import net .javadiscord .javabot .systems .staff_commands . tags .dao .CustomTagRepository ;
14+ import net .javadiscord .javabot .systems .staff_commands . tags .model .CustomTag ;
1515import org .jetbrains .annotations .Contract ;
1616import org .jetbrains .annotations .NotNull ;
1717
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .tags .commands ;
1+ package net .javadiscord .javabot .systems .staff_commands . tags .commands ;
22
33import com .dynxsty .dih4jda .interactions .components .ModalHandler ;
44import net .dv8tion .jda .api .EmbedBuilder ;
1515import net .dv8tion .jda .api .interactions .modals .ModalMapping ;
1616import net .dv8tion .jda .api .requests .restaction .interactions .InteractionCallbackAction ;
1717import net .javadiscord .javabot .Bot ;
18- import net .javadiscord .javabot .systems .tags .model .CustomTag ;
18+ import net .javadiscord .javabot .systems .staff_commands . tags .model .CustomTag ;
1919import net .javadiscord .javabot .util .ExceptionLogger ;
2020import net .javadiscord .javabot .util .Responses ;
2121import org .jetbrains .annotations .NotNull ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .tags .commands ;
1+ package net .javadiscord .javabot .systems .staff_commands . tags .commands ;
22
33import com .dynxsty .dih4jda .interactions .commands .SlashCommand ;
44import net .dv8tion .jda .api .interactions .commands .build .Commands ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .tags .commands ;
1+ package net .javadiscord .javabot .systems .staff_commands . tags .commands ;
22
33import com .dynxsty .dih4jda .interactions .commands .SlashCommand ;
44import lombok .extern .slf4j .Slf4j ;
Original file line number Diff line number Diff line change 1- package net .javadiscord .javabot .systems .tags .commands ;
1+ package net .javadiscord .javabot .systems .staff_commands . tags .commands ;
22
33import com .dynxsty .dih4jda .interactions .commands .AutoCompletable ;
44import net .dv8tion .jda .api .EmbedBuilder ;
1313import net .dv8tion .jda .api .requests .restaction .interactions .ReplyCallbackAction ;
1414import net .javadiscord .javabot .Bot ;
1515import net .javadiscord .javabot .data .h2db .DbHelper ;
16- import net .javadiscord .javabot .systems .tags .CustomTagManager ;
17- import net .javadiscord .javabot .systems .tags .dao .CustomTagRepository ;
18- import net .javadiscord .javabot .systems .tags .model .CustomTag ;
16+ import net .javadiscord .javabot .systems .staff_commands . tags .CustomTagManager ;
17+ import net .javadiscord .javabot .systems .staff_commands . tags .dao .CustomTagRepository ;
18+ import net .javadiscord .javabot .systems .staff_commands . tags .model .CustomTag ;
1919import net .javadiscord .javabot .util .Responses ;
2020import org .jetbrains .annotations .NotNull ;
2121
You can’t perform that action at this time.
0 commit comments