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
308 B

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