21 lines
550 B
Java
21 lines
550 B
Java
package com.muyu.cloud.system;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
/**
|
|
* @Author: xie ya ru
|
|
* @date: 2024/7/10
|
|
* @Version: 1.0
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableScheduling
|
|
public class CloudSystemApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(CloudSystemApplication.class, args);
|
|
}
|
|
}
|