ln.skyscanner/Program.cs

24 lines
507 B
C#
Raw Normal View History

2019-03-11 09:00:07 +01:00
// /**
// * 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)
{
2019-04-04 19:34:19 +02:00
Logger.ConsoleLogger.MaxLogLevel = LogLevel.INFO;
2019-08-29 13:14:52 +02:00
new SkyScanner().Start(args);
2019-03-12 00:55:04 +01:00
}
2019-03-11 09:00:07 +01:00
}
}