14 lines
477 B
C#
14 lines
477 B
C#
|
|
using Catalogger.Backend.Cache.InMemoryCache;
|
||
|
|
using Remora.Discord.API.Abstractions.Gateway.Events;
|
||
|
|
using Remora.Discord.Gateway.Responders;
|
||
|
|
using Remora.Results;
|
||
|
|
|
||
|
|
namespace Catalogger.Backend.Bot.Responders.Guilds;
|
||
|
|
|
||
|
|
public class AuditLogResponder(AuditLogCache auditLogCache) : IResponder<IGuildAuditLogEntryCreate>
|
||
|
|
{
|
||
|
|
public Task<Result> RespondAsync(IGuildAuditLogEntryCreate evt, CancellationToken ct = default)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|