24 lines
509 B
Java
24 lines
509 B
Java
package com.cf.cs.services;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* The type Cs services application.
|
|
*
|
|
* @author xajhuang @163.com
|
|
*/
|
|
@SpringBootApplication
|
|
public class CsServicesApplication {
|
|
|
|
/**
|
|
* The entry point of application.
|
|
*
|
|
* @param args the input arguments
|
|
*/
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(CsServicesApplication.class, args);
|
|
}
|
|
|
|
}
|