mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 00:03:22 +00:00
12 lines
275 B
C#
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();
|
|
}
|
|
}
|