aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2024-01-12 09:27:47 -0700
committerGitHub <noreply@github.com>2024-01-12 09:27:47 -0700
commit82df226246515991b5a7dac576972ee4e6c0a646 (patch)
tree6930d17b58bd9a422645cec3abaccaf551881150 /Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs
parent68fd9c469f013acef3e661d15adb61c4eb965ec7 (diff)
parent41de6d17411a3e5cb962da06c18ffb2a69b40849 (diff)
Merge pull request #10838 from barronpm/livetv-project
Move Live TV code to Jellyfin.LiveTv
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs b/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs
deleted file mode 100644
index 098f193fba..0000000000
--- a/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System.Collections.Generic;
-using MediaBrowser.Common.Configuration;
-using MediaBrowser.Model.LiveTv;
-
-namespace Emby.Server.Implementations.LiveTv
-{
- /// <summary>
- /// <see cref="IConfigurationFactory" /> implementation for <see cref="LiveTvOptions" />.
- /// </summary>
- public class LiveTvConfigurationFactory : IConfigurationFactory
- {
- /// <inheritdoc />
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new ConfigurationStore[]
- {
- new ConfigurationStore
- {
- ConfigurationType = typeof(LiveTvOptions),
- Key = "livetv"
- }
- };
- }
- }
-}