18 lines
504 B
Java
Executable File
18 lines
504 B
Java
Executable File
package com.example.mmad.testapp;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
@SpringBootApplication
|
|
@EnableDiscoveryClient
|
|
@EnableAsync
|
|
public class TestAAppApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(TestAAppApplication.class, args);
|
|
}
|
|
|
|
}
|