aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/TestService.cs
diff options
context:
space:
mode:
authorPatrick Barron <18354464+barronpm@users.noreply.github.com>2020-06-22 21:50:12 +0000
committerGitHub <noreply@github.com>2020-06-22 21:50:12 +0000
commit68e89be3494eb4d348f464bfcd8c07b49ddaca21 (patch)
tree21bba0ba718371def5d19015eafc9031bb18099f /MediaBrowser.Api/TestService.cs
parent743032f1e12fb964802b28de21aec977b556b786 (diff)
parent1d7d480efe52589557bdc6371731fad6d15ee1f6 (diff)
Merge pull request #3419 from crobibero/api-branding
move BrandingService.cs to Jellyfin.Api
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)
+ {
+ }
+ }
+}