Showing
1 changed file
with
13 additions
and
0 deletions
1 | +package com.web; | ||
2 | + | ||
3 | +import org.springframework.boot.SpringApplication; | ||
4 | +import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
5 | + | ||
6 | +@SpringBootApplication | ||
7 | +public class HGMonitorNXWebApplication { | ||
8 | + | ||
9 | + public static void main(String[] args) { | ||
10 | + SpringApplication.run(HGMonitorNXWebApplication.class, args); | ||
11 | + } | ||
12 | + | ||
13 | +} |
-
Please register or login to post a comment