add 新增 ruoyi-snailai-server 独立服务

This commit is contained in:
疯狂的狮子Li
2026-05-26 13:54:54 +08:00
parent af21d69e65
commit 0f0645401b
19 changed files with 923 additions and 9 deletions
@@ -0,0 +1,18 @@
package org.dromara.snailai;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Snail AI Server 启动程序
*
* @author Lion Li
* @date 2026-05-26
*/
@SpringBootApplication
public class SnailAiServerApplication {
public static void main(String[] args) {
com.aizuda.snail.ai.starter.SnailAiSpringbootApplication.main(args);
}
}