mirror of
https://github.com/bitwarden/android.git
synced 2026-05-22 14:11:47 -05:00
13 lines
294 B
C#
13 lines
294 B
C#
using System;
|
|
using Bit.App;
|
|
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.iOS.Core.Services
|
|
{
|
|
public class HttpService : IHttpService
|
|
{
|
|
public ApiHttpClient ApiClient => new ApiHttpClient();
|
|
public IdentityHttpClient IdentityClient => new IdentityHttpClient();
|
|
}
|
|
}
|