You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
445 B
21 lines
445 B
package net.sopod.soim.entry; |
|
|
|
import org.slf4j.Logger; |
|
import org.slf4j.LoggerFactory; |
|
import org.springframework.boot.SpringApplication; |
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
|
/** |
|
* EntryMain |
|
* |
|
* @author tmy |
|
* @date 2022-03-26 00:06 |
|
*/ |
|
@SpringBootApplication |
|
public class EntryApplication { |
|
|
|
public static void main(String[] args) { |
|
SpringApplication.run(EntryApplication.class, args); |
|
} |
|
|
|
}
|
|
|