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

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