16 行
530 B
Java
16 行
530 B
Java
|
|
package com.xuqm.push;
|
||
|
|
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.context.annotation.ComponentScan;
|
||
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
@ComponentScan(basePackages = {"com.xuqm.push", "com.xuqm.common"})
|
||
|
|
@EnableAsync
|
||
|
|
public class PushServiceApplication {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(PushServiceApplication.class, args);
|
||
|
|
}
|
||
|
|
}
|