mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
13 lines
369 B
C#
13 lines
369 B
C#
using System;
|
|
using Xamarin.Android.Net;
|
|
using Bit.App;
|
|
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.Android.Services
|
|
{
|
|
public class HttpService : IHttpService
|
|
{
|
|
public ApiHttpClient ApiClient => new ApiHttpClient(new AndroidClientHandler());
|
|
public IdentityHttpClient IdentityClient => new IdentityHttpClient(new AndroidClientHandler());
|
|
}
|
|
}
|