aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs
blob: 14726565aa3bfdac3ec3962f3198bc2b8d3bd832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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()
            };
        }
    }
}