mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-22 13:29:09 +08:00
14 lines
331 B
Java
14 lines
331 B
Java
![]() |
package cn.iocoder.dashboard;
|
||
|
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
||
|
@SpringBootApplication
|
||
|
public class DashboardApplication {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(DashboardApplication.class, args);
|
||
|
}
|
||
|
|
||
|
}
|