2026-06-16 17:39:13 +08:00
|
|
|
package com.xuqm.bugcollect;
|
2026-06-16 12:10:58 +08:00
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2026-06-16 17:39:13 +08:00
|
|
|
@ComponentScan(basePackages = {"com.xuqm.bugcollect", "com.xuqm.common"})
|
2026-06-16 12:10:58 +08:00
|
|
|
@EnableAsync
|
|
|
|
|
public class LogServiceApplication {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(LogServiceApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|