ChexnetMasterApplication.java 425 B

123456789101112131415
  1. package cn.flea.chexnetmaster;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.scheduling.annotation.EnableScheduling;
  5. @EnableScheduling
  6. @SpringBootApplication
  7. public class ChexnetMasterApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(ChexnetMasterApplication.class, args);
  10. }
  11. }