using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Net;
using Microsoft.Extensions.Logging;
namespace MediaBrowser.Api
{
///
/// Service for testing path value.
///
public class TestService : BaseApiService
{
///
/// Test service.
///
/// Instance of the interface.
/// Instance of the interface.
/// Instance of the interface.
public TestService(
ILogger logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory)
: base(logger, serverConfigurationManager, httpResultFactory)
{
}
}
}