14 lines
361 B
C#
Raw Permalink Normal View History

2023-10-13 19:50:54 +02:00
using Discord.Interactions;
namespace GodReplacementProduct.Modules;
public class FactChecker : InteractionModuleBase<SocketInteractionContext>
{
[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);
}