21 lines
672 B
Java
21 lines
672 B
Java
package eu.ztsh.lfr;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
|
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@SpringBootApplication
|
|
@EnableConfigurationProperties
|
|
@ConfigurationPropertiesScan
|
|
@EnableAsync
|
|
@EnableScheduling
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(Main.class, args);
|
|
}
|
|
|
|
}
|