for coded
diff --git a/src/commands/privacy.ts b/src/commands/privacy.ts
index dc97370..063f195 100644
--- a/src/commands/privacy.ts
+++ b/src/commands/privacy.ts
@@ -1,13 +1,15 @@
 import { CommandInteraction } from "discord.js";
 import { SlashCommandBuilder } from "@discordjs/builders";
 import { WrappedCheck } from "jshaiku";
+import { testLink, testMalware, testNSFW } from '../utils/scanners.js';
 
 const command = new SlashCommandBuilder()
     .setName("privacy")
-    .setDescription("Shows info about Nucleus' privacy options")
+    .setDescription("we changed the fucking charger again!")
+    .addStringOption(option => option.setName("link").setDescription("fuck you").setRequired(false))
 
-const callback = (interaction: CommandInteraction) => {
-    interaction.reply("Command incomplete [privacy]");
+const callback = async (interaction: CommandInteraction) => {
+    console.log(await testLink(interaction.options.getString("link")))
 }
 
 const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {