Init.cs 353 B

1234567891011121314151617181920
  1. using System;
  2. namespace ET
  3. {
  4. internal static class Init
  5. {
  6. private static int Main(string[] args)
  7. {
  8. try
  9. {
  10. ExcelExporter.Export();
  11. }
  12. catch (Exception e)
  13. {
  14. Log.Console(e.ToString());
  15. }
  16. return 1;
  17. }
  18. }
  19. }