12345678910111213141516171819202122 |
- using fis.Loader.Handlers;
- using fis.Loader.Parameters;
- using System;
- namespace fis.Loader
- {
- class Program
- {
- static void Main(string[] args)
- {
- try
- {
- SharedParameters.Load(args);
- HandlerCenter.Execute();
- }
- catch (Exception ex)
- {
- Logger.WriteLine($"Exception happened {ex}");
- }
- }
- }
- }
|