实现 SourceMessage Inbox 与 AgentBus 入站闭环
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package cn.nianxx.thhotel;
|
||||
|
||||
import org.mybatis.spring.annotation.MapperScan;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* TH Hotel 后端应用入口。
|
||||
*/
|
||||
@MapperScan("cn.nianxx.thhotel.platform.message.mapper")
|
||||
@SpringBootApplication
|
||||
public class ThHotelApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ThHotelApplication.class, args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user