ln.skyscanner/Program.cs

24 lines
507 B
C#

// /**
// * File: Program.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using ln.logging;
namespace ln.skyscanner
{
class MainClass
{
public static void Main(string[] args)
{
Logger.ConsoleLogger.MaxLogLevel = LogLevel.INFO;
new SkyScanner().Start(args);
}
}
}