20 lines
516 B
Java
20 lines
516 B
Java
package com.zhilian.manager;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* @BelongsProject: smart-cloud-server
|
|
* @BelongsPackage: com.zhilian.manager
|
|
* @Author: LiYuan
|
|
* @CreateTime: 2024-03-31 10:17
|
|
* @Description: TODO
|
|
* @Version: 1.0
|
|
*/
|
|
@SpringBootApplication
|
|
public class ZhilianMagagerApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ZhilianMagagerApplication.class,args);
|
|
}
|
|
}
|