mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 05:03:39 +00:00
12 lines
213 B
C#
12 lines
213 B
C#
using System;
|
|
using Bit.App;
|
|
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.iOS.Core.Services
|
|
{
|
|
public class HttpService : IHttpService
|
|
{
|
|
public ApiHttpClient Client => new ApiHttpClient();
|
|
}
|
|
}
|