提交 | 用户 | 时间 | ||
e7c126 | 1 | package com.iailab.module.infra; |
H | 2 | |
3 | import org.springframework.boot.SpringApplication; | |
4 | import org.springframework.boot.autoconfigure.SpringBootApplication; | |
5 | ||
6 | /** | |
7 | * 项目的启动类 | |
8 | * <p> | |
9 | * | |
10 | * @author iailab | |
11 | */ | |
12 | @SpringBootApplication | |
13 | public class InfraServerApplication { | |
14 | ||
15 | public static void main(String[] args) { | |
16 | SpringApplication.run(InfraServerApplication.class, args); | |
17 | } | |
18 | ||
19 | } |