Init.cs 405 B

123456789101112131415161718192021
  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. Console.WriteLine("excelexporter ok!");
  17. return 1;
  18. }
  19. }
  20. }