bitwarden-android/src/iOS.Core/Services/HttpService.cs

13 lines
294 B
C#
Raw Normal View History

using System;
using Bit.App;
using Bit.App.Abstractions;
namespace Bit.iOS.Core.Services
{
public class HttpService : IHttpService
{
2017-05-07 03:20:57 +03:00
public ApiHttpClient ApiClient => new ApiHttpClient();
public IdentityHttpClient IdentityClient => new IdentityHttpClient();
}
}