31 lines
667 B
C#
31 lines
667 B
C#
using System;
|
|
using MediaBrowser.Controller;
|
|
|
|
namespace MediaBrowser.Program
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
LoadKernel();
|
|
}
|
|
|
|
private static void LoadKernel()
|
|
{
|
|
DateTime now = DateTime.Now;
|
|
|
|
Console.WriteLine("Loading");
|
|
|
|
Kernel kernel = new Kernel();
|
|
|
|
kernel.Init();
|
|
|
|
var time = DateTime.Now - now;
|
|
Console.WriteLine("Done in " + time.TotalSeconds + " seconds");
|
|
|
|
Console.WriteLine("Press Enter to quit.");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|