mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
17 lines
310 B
C#
17 lines
310 B
C#
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public class NoopEventWriteService : IEventWriteService
|
|
{
|
|
public Task CreateAsync(IEvent e)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
public Task CreateManyAsync(IEnumerable<IEvent> e)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|