chore: format with csharpier
This commit is contained in:
parent
2f516dcb73
commit
4f54077c68
59 changed files with 2000 additions and 942 deletions
|
|
@ -6,15 +6,16 @@ using Remora.Results;
|
|||
|
||||
namespace Catalogger.Backend.Bot.Responders.Guilds;
|
||||
|
||||
public class AuditLogResponder(AuditLogCache auditLogCache, ILogger logger) : IResponder<IGuildAuditLogEntryCreate>
|
||||
public class AuditLogResponder(AuditLogCache auditLogCache, ILogger logger)
|
||||
: IResponder<IGuildAuditLogEntryCreate>
|
||||
{
|
||||
private readonly ILogger _logger = logger.ForContext<AuditLogResponder>();
|
||||
|
||||
|
||||
public Task<Result> RespondAsync(IGuildAuditLogEntryCreate evt, CancellationToken ct = default)
|
||||
{
|
||||
_logger.Debug("type: {ActionType}", evt.ActionType);
|
||||
_logger.Debug("{Id}, {Reason}", evt.ID, evt.Reason);
|
||||
|
||||
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue