1
0
mirror of https://github.com/bitwarden/server synced 2026-01-01 08:03:23 +00:00

Rename services implementations

This commit is contained in:
Kyle Spearrin
2016-12-02 23:37:08 -05:00
parent bfb98131e5
commit 63243eddc6
5 changed files with 22 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
using System.Threading.Tasks;
namespace Bit.Core.Services
{
public class NoopBlockIpService : IBlockIpService
{
public Task BlockIpAsync(string ipAddress, bool permanentBlock)
{
// Do nothing
return Task.FromResult(0);
}
}
}