fix subcommands/updates.ts namespace missing
This commit is contained in:
parent
666986afb1
commit
cc5dd22b82
1 changed files with 19 additions and 12 deletions
|
|
@ -62,3 +62,10 @@ export async function autocompleteVersion(interaction: any): Promise<void> {
|
||||||
.slice(0, 25);
|
.slice(0, 25);
|
||||||
await interaction.respond(choices);
|
await interaction.respond(choices);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const UpdatesCommands = {
|
||||||
|
post: handleUpdatesPost,
|
||||||
|
preview: handleUpdatesPreview,
|
||||||
|
list: handleUpdatesList,
|
||||||
|
autocomplete: autocompleteVersion,
|
||||||
|
};
|
||||||
Loading…
Add table
Reference in a new issue