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.

14 lines
304 B

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