namespace NadekoBot; public class NadekoInteractionService : INadekoInteractionService, INService { private readonly DiscordSocketClient _client; public NadekoInteractionService(DiscordSocketClient client) { _client = client; } public NadekoInteraction Create( ulong userId, SimpleInteraction inter) => new NadekoInteraction(_client, userId, inter.Button, inter.TriggerAsync, onlyAuthor: true); }