mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-31 12:14:21 -04:00
18 lines
462 B
C#
18 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
namespace Jellyfin.Server.Implementations.DatabaseConfiguration;
|
|
|
|
/// <summary>
|
|
/// Factory for constructing a database configuration.
|
|
/// </summary>
|
|
public class DatabaseConfigurationFactory : IConfigurationFactory
|
|
{
|
|
/// <inheritdoc/>
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
yield return new DatabaseConfigurationStore();
|
|
}
|
|
}
|