feat: replace list command with files command to manage user files

This commit is contained in:
grngxd 2025-07-31 21:27:08 +01:00
parent b6e24c517b
commit ceabfb8b3a
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ import { formatSize } from "../lib/files";
import { StereoFile } from "../types/files";
export const data = new SlashCommandBuilder()
.setName("list")
.setName("files")
.setDescription("list all of your files")
.addIntegerOption(option =>
option.setName("page")

View file

@ -1,9 +1,9 @@
import list from "./list";
import files from "./files";
import register from "./register";
import user from "./user";
export default [
user,
register,
list
files
]