mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-18 09:35:29 +08:00
18 lines
508 B
Java
18 lines
508 B
Java
package com.lhd.tams;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
//import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
//import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
//@EnableFeignClients
|
|
//@EnableDiscoveryClient
|
|
@SpringBootApplication
|
|
public class MallTamsApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(MallTamsApplication.class, args);
|
|
}
|
|
|
|
}
|