mirror of
https://github.com/bitwarden/server
synced 2025-12-23 11:43:23 +00:00
20 lines
414 B
C#
20 lines
414 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
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(IList<IEvent> e)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|
|
}
|