// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace Jellyfin.Server.Implementations.DatabaseConfiguration; using System; using System.Collections.Generic; using MediaBrowser.Common.Configuration; /// /// Factory for constructing a database configuration. /// public class DatabaseConfigurationFactory : IConfigurationFactory { /// public IEnumerable GetConfigurations() { yield return new DatabaseConfigurationStore(); } }