aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/TestService.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-24 12:36:13 -0600
committercrobibero <cody@robibe.ro>2020-06-24 12:36:13 -0600
commit289605c07f53e0a1bf437c70ce3a789a7fb0a621 (patch)
tree01720fe1fdc245bbbd7637efa6c272c9a7f97533 /MediaBrowser.Api/TestService.cs
parent32881c6b22da62652adaf0cfaf4c7702aa3c616b (diff)
parent6ad50f2e023cdf8fedce8c828c507576d590858e (diff)
Merge remote-tracking branch 'upstream/api-migration' into api-library
Diffstat (limited to 'MediaBrowser.Api/TestService.cs')
-rw-r--r--MediaBrowser.Api/TestService.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/MediaBrowser.Api/TestService.cs b/MediaBrowser.Api/TestService.cs
new file mode 100644
index 000000000..6c999e08d
--- /dev/null
+++ b/MediaBrowser.Api/TestService.cs
@@ -0,0 +1,26 @@
+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)
+ {
+ }
+ }
+}