using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
namespace Jellyfin.Server.Migrations
{
///
/// A factory that teachs Jellyfin how to find a peristent file which lists all applied migrations.
///
public class MigrationsFactory : IConfigurationFactory
{
///
public IEnumerable GetConfigurations()
{
return new[]
{
new MigrationsListStore()
};
}
}
}