bitwarden-android/src/iOS.Core/Services/HttpService.cs
2017-05-06 20:20:57 -04:00

12 lines
294 B
C#

using System;
using Bit.App;
using Bit.App.Abstractions;
namespace Bit.iOS.Core.Services
{
public class HttpService : IHttpService
{
public ApiHttpClient ApiClient => new ApiHttpClient();
public IdentityHttpClient IdentityClient => new IdentityHttpClient();
}
}