mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-04-10 11:11:56 -04:00
17 lines
267 B
C#
17 lines
267 B
C#
using Kyoo.Controllers;
|
|
using Kyoo.Models;
|
|
|
|
namespace Kyoo.Tasks
|
|
{
|
|
public static class CoreTaskHolder
|
|
{
|
|
public static readonly ITask[] Tasks =
|
|
{
|
|
new CreateDatabase(),
|
|
new PluginLoader(),
|
|
new Crawler(),
|
|
new MetadataLoader(),
|
|
new ReScan()
|
|
};
|
|
}
|
|
} |