opai服务管理
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
388 B

  1. package com.bw.asr;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. /**
  5. * 系统接口启动类
  6. * @author jian.mao
  7. * @date 2025年12月30日
  8. * @description
  9. */
  10. @SpringBootApplication
  11. public class Application {
  12. public static void main(String[] args) {
  13. SpringApplication.run(Application.class, args);
  14. }
  15. }