1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +00:00
Files
mobile/src/UWP/Services/HttpService.cs
2017-10-02 22:38:10 -04:00

12 lines
275 B
C#

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