2018-11-23 09:08:15 +08:00
|
|
|
package com.gzzn.omms.msgexchangeapi;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2019-01-14 10:58:19 +08:00
|
|
|
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
2018-11-23 09:08:15 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
@EnableScheduling
|
2019-01-14 10:58:19 +08:00
|
|
|
@EnableEurekaClient
|
2018-11-23 09:08:15 +08:00
|
|
|
public class MsgexchangeApiApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(MsgexchangeApiApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|