百度asr应用
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.

21 lines
499 B

5 months ago
  1. package com.bw.asr;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.kafka.annotation.EnableKafka;
  5. import org.springframework.scheduling.annotation.EnableScheduling;
  6. /**
  7. * @author jian.mao
  8. * @date 2025年1月13日
  9. * @description
  10. */
  11. @SpringBootApplication
  12. @EnableKafka
  13. public class Application {
  14. public static void main(String[] args) {
  15. SpringApplication.run(Application.class, args);
  16. }
  17. }