123456789101112131415 |
- package cn.flea.chexnetmaster;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.scheduling.annotation.EnableScheduling;
- @EnableScheduling
- @SpringBootApplication
- public class ChexnetMasterApplication {
- public static void main(String[] args) {
- SpringApplication.run(ChexnetMasterApplication.class, args);
- }
- }
|