using Discord.Interactions; namespace GodReplacementProduct.Modules; public class FactChecker : InteractionModuleBase { [SlashCommand("set_fact", "Record a fact for posterity")] public async Task SetFact(string fact_name, string fact_value) => await RespondAsync($"{fact_name} - {fact_value}", ephemeral: true); }