You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
414 B
Java

package com.baiye;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*
*
* @author q
* @date 2021/11/24
*/
@SpringBootApplication
public class DevProtocolGatewayApplication {
public static void main(String[] args) {
SpringApplication.run(DevProtocolGatewayApplication.class, args);
}
}