mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 20:53:25 +00:00
14 lines
369 B
C#
14 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());
|
|
}
|
|
}
|