mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-28 21:01:50 +00:00
25 lines
725 B
C#
25 lines
725 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
namespace Emby.Server.Implementations.Configuration
|
|
{
|
|
/// <summary>
|
|
/// A configuration factory for <see cref="ExperimentalConfiguration"/>.
|
|
/// </summary>
|
|
public class ExperimentalConfigurationFactory : IConfigurationFactory
|
|
{
|
|
/// <inheritdoc />
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return
|
|
[
|
|
new ConfigurationStore
|
|
{
|
|
ConfigurationType = typeof(ExperimentalConfiguration),
|
|
Key = "experimental"
|
|
}
|
|
];
|
|
}
|
|
}
|
|
}
|