api service interface

This commit is contained in:
Kyle Spearrin 2019-04-11 23:57:05 -04:00
parent 2e31a7b280
commit 87543f5beb
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface IApiService
{
}
}

View File

@ -16,7 +16,7 @@ using System.Threading.Tasks;
namespace Bit.Core.Services
{
public class ApiService
public class ApiService : IApiService
{
private readonly JsonSerializerSettings _jsonSettings = new JsonSerializerSettings
{