Skip to content

Commit 287b457

Browse files
committed
Rename
1 parent 7fd9184 commit 287b457

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

File renamed without changes.

src/command-abstractions/command-set-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { BaseBotInteraction } from "./interaction-base.js";
77
import { TextBasedCommandBuilder } from "./text-based-command-builder.js";
88
import { MessageContextMenuInteractionBuilder } from "./context-menu.js";
99
import { ModalInteractionBuilder } from "./modal.js";
10-
import { BotButton, BotButtonHandler, ButtonInteractionBuilder } from "./button-handler.js";
10+
import { BotButton, BotButtonHandler, ButtonInteractionBuilder } from "./button.js";
1111

1212
import * as util from "util";
1313

src/command-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as Discord from "discord.js";
44
import { create_error_reply, Wheatley } from "./wheatley.js";
55
import { BotTextBasedCommand } from "./command-abstractions/text-based-command-descriptor.js";
66
import { BaseBotInteraction } from "./command-abstractions/interaction-base.js";
7-
import { BotButtonHandler } from "./command-abstractions/button-handler.js";
7+
import { BotButtonHandler } from "./command-abstractions/button.js";
88
import { SelfClearingMap } from "./utils/containers.js";
99
import { MINUTE } from "./common.js";
1010
import { TextBasedCommand } from "./command-abstractions/text-based-command.js";

src/components/moderation/modlogs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { pluralize, time_to_human } from "../../utils/strings.js";
88
import { M } from "../../utils/debugging-and-logging.js";
99
import { BotComponent } from "../../bot-component.js";
1010
import { CommandSetBuilder } from "../../command-abstractions/command-set-builder.js";
11-
import { BotButton, ButtonInteractionBuilder } from "../../command-abstractions/button-handler.js";
11+
import { BotButton, ButtonInteractionBuilder } from "../../command-abstractions/button.js";
1212
import { Wheatley } from "../../wheatley.js";
1313
import { colors } from "../../common.js";
1414
import { EarlyReplyMode, TextBasedCommandBuilder } from "../../command-abstractions/text-based-command-builder.js";

src/components/report.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { CommandSetBuilder } from "../command-abstractions/command-set-builder.j
1010
import { Wheatley } from "../wheatley.js";
1111
import { MessageContextMenuInteractionBuilder } from "../command-abstractions/context-menu.js";
1212
import { ModalInteractionBuilder } from "../command-abstractions/modal.js";
13-
import { BotButton, ButtonInteractionBuilder } from "../command-abstractions/button-handler.js";
13+
import { BotButton, ButtonInteractionBuilder } from "../command-abstractions/button.js";
1414

1515
export default class Report extends BotComponent {
1616
private staff_flag_log!: Discord.TextChannel;

0 commit comments

Comments
 (0)