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.

13 lines
323 B

6 days ago
  1. package com.chenhai.chenhaimcp;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class ChenhaiMcpApplication {
  6. public static void main(String[] args) {
  7. SpringApplication.run(ChenhaiMcpApplication.class, args);
  8. }
  9. }