14 lines
361 B
C#
14 lines
361 B
C#
|
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);
|
||
|
}
|
||
|
|