2026-04-21 22:07:29 +08:00
|
|
|
package com.xuqm.update;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
2026-04-29 00:34:17 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2026-04-21 22:07:29 +08:00
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2026-04-29 00:34:17 +08:00
|
|
|
@EnableScheduling
|
|
|
|
|
@EnableAsync
|
2026-04-21 22:07:29 +08:00
|
|
|
@ComponentScan(basePackages = {"com.xuqm.update", "com.xuqm.common"})
|
|
|
|
|
public class UpdateServiceApplication {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(UpdateServiceApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|