- demo-service (port 8085): auth, user profile, demo-to-IM token bridge - file-service (port 8086): SHA-256 dedup upload, ImageIO thumbnails, 30-day reclaim - tenant-service: GET /api/sdk/config?appId returns imWsUrl/fileServiceUrl/features - im-service: GET /api/im/admin/users/search fuzzy match by userId or nickname Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 行
469 B
Java
15 行
469 B
Java
package com.xuqm.demo;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@SpringBootApplication(scanBasePackages = {"com.xuqm.demo", "com.xuqm.common"})
|
|
@EnableScheduling
|
|
public class DemoServiceApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(DemoServiceApplication.class, args);
|
|
}
|
|
}
|