aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/TestService.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-08-03 14:42:46 -0600
committercrobibero <cody@robibe.ro>2020-08-03 14:42:46 -0600
commite64924f4d385a53c94f5b884be10d8d56a2f73a9 (patch)
treeecb292bb0c17d5ea5de5256f3f92d4fda3251f8a /MediaBrowser.Api/TestService.cs
parent9e00aa3014c0044c0918a775c3394763666b30af (diff)
actually remove MediaBrowser.Api
Diffstat (limited to 'MediaBrowser.Api/TestService.cs')
-rw-r--r--MediaBrowser.Api/TestService.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/MediaBrowser.Api/TestService.cs b/MediaBrowser.Api/TestService.cs
deleted file mode 100644
index 6c999e08d..000000000
--- a/MediaBrowser.Api/TestService.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using MediaBrowser.Controller.Configuration;
-using MediaBrowser.Controller.Net;
-using Microsoft.Extensions.Logging;
-
-namespace MediaBrowser.Api
-{
- /// <summary>
- /// Service for testing path value.
- /// </summary>
- public class TestService : BaseApiService
- {
- /// <summary>
- /// Test service.
- /// </summary>
- /// <param name="logger">Instance of the <see cref="ILogger{TestService}"/> interface.</param>
- /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
- /// <param name="httpResultFactory">Instance of the <see cref="IHttpResultFactory"/> interface.</param>
- public TestService(
- ILogger<TestService> logger,
- IServerConfigurationManager serverConfigurationManager,
- IHttpResultFactory httpResultFactory)
- : base(logger, serverConfigurationManager, httpResultFactory)
- {
- }
- }
-}