mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
13 lines
268 B
C#
13 lines
268 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 Client => new ApiHttpClient(new CustomAndroidClientHandler());
|
|
}
|
|
}
|