mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
api service interface
This commit is contained in:
parent
2e31a7b280
commit
87543f5beb
2 changed files with 10 additions and 1 deletions
9
src/Core/Abstractions/IApiService.cs
Normal file
9
src/Core/Abstractions/IApiService.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.Core.Abstractions
|
||||
{
|
||||
public interface IApiService
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue