Program.cs 442 B

12345678910111213141516171819202122
  1. using fis.Loader.Handlers;
  2. using fis.Loader.Parameters;
  3. using System;
  4. namespace fis.Loader
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. try
  11. {
  12. SharedParameters.Load(args);
  13. HandlerCenter.Execute();
  14. }
  15. catch (Exception ex)
  16. {
  17. Logger.WriteLine($"Exception happened {ex}");
  18. }
  19. }
  20. }
  21. }