guess who forgot to add files
diff --git a/src/commands/role/_meta.ts b/src/commands/role/_meta.ts
new file mode 100644
index 0000000..408576f
--- /dev/null
+++ b/src/commands/role/_meta.ts
@@ -0,0 +1,4 @@
+const name = "role";
+const description = "Change roles for users";
+
+export { name, description };
\ No newline at end of file
diff --git a/src/commands/role/all.ts b/src/commands/role/all.ts
new file mode 100644
index 0000000..0f4c43f
--- /dev/null
+++ b/src/commands/role/all.ts
@@ -0,0 +1,20 @@
+import { CommandInteraction } from "discord.js";
+import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
+import { WrappedCheck } from "jshaiku";
+
+const command = (builder: SlashCommandSubcommandBuilder) =>
+ builder
+ .setName("all")
+ .setDescription("Gives or removes a role from everyone")
+
+const callback = (interaction: CommandInteraction) => {
+ interaction.reply("Command incomplete [role/all]");
+}
+
+const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
+ return true;
+}
+
+export { command };
+export { callback };
+export { check };
\ No newline at end of file
diff --git a/src/commands/role/user.ts b/src/commands/role/user.ts
new file mode 100644
index 0000000..4229133
--- /dev/null
+++ b/src/commands/role/user.ts
@@ -0,0 +1,20 @@
+import { CommandInteraction } from "discord.js";
+import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
+import { WrappedCheck } from "jshaiku";
+
+const command = (builder: SlashCommandSubcommandBuilder) =>
+ builder
+ .setName("user")
+ .setDescription("Gives or removes a role form someone")
+
+const callback = (interaction: CommandInteraction) => {
+ interaction.reply("Command incomplete [role/user]");
+}
+
+const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
+ return true;
+}
+
+export { command };
+export { callback };
+export { check };
\ No newline at end of file