| 123456789101112131415161718192021222324252627282930 |
- 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();
- }
- }
- }
|