17 lines
388 B
Java
17 lines
388 B
Java
package com.bwie.gateway;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* @author gxb
|
|
* @description TODO
|
|
* @date 2023-12-19 15:31
|
|
*/
|
|
@SpringBootApplication
|
|
public class GatewayAppliction {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(GatewayAppliction.class,args);
|
|
}
|
|
}
|