blob: bf49a896ee54298f6238374b3e6babfc3cb324bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Net.Http;
namespace MediaBrowser.ApiInteraction
{
public class ApiClient : BaseHttpApiClient
{
public ApiClient(HttpClientHandler handler)
: base(handler)
{
}
}
}
|