diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-11-10 11:10:51 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2023-11-12 10:24:35 -0500 |
| commit | e463dbda47cc51d9e774e867140921f001a3a52a (patch) | |
| tree | 27dec089574867d4d855a1453f6144f6923e5460 /Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs | |
| parent | 9595636d6105bbe77292d87c7016c21f9df8d4c7 (diff) | |
Move network configuration to MediaBrowser.Common
Diffstat (limited to 'Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs')
| -rw-r--r-- | Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs b/Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs deleted file mode 100644 index 14726565a..000000000 --- a/Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.Collections.Generic; -using MediaBrowser.Common.Configuration; - -namespace Jellyfin.Networking.Configuration -{ - /// <summary> - /// Defines the <see cref="NetworkConfigurationFactory" />. - /// </summary> - public class NetworkConfigurationFactory : IConfigurationFactory - { - /// <summary> - /// The GetConfigurations. - /// </summary> - /// <returns>The <see cref="IEnumerable{ConfigurationStore}"/>.</returns> - public IEnumerable<ConfigurationStore> GetConfigurations() - { - return new[] - { - new NetworkConfigurationStore() - }; - } - } -} |
