feat(im): expand IM API with friends, groups, admin ops, operation logging Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 行
623 B
Java
18 行
623 B
Java
package com.xuqm.update;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@SpringBootApplication
|
|
@EnableScheduling
|
|
@EnableAsync
|
|
@ComponentScan(basePackages = {"com.xuqm.update", "com.xuqm.common"})
|
|
public class UpdateServiceApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(UpdateServiceApplication.class, args);
|
|
}
|
|
}
|