22 lines
620 B
C#
22 lines
620 B
C#
// <copyright file="DatabaseConfigurationFactory.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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();
|
|
}
|
|
}
|