ADaStor/src/main/java/ru/bvn13/adastor/AdastorApp.java

18 lines
466 B
Java
Raw Normal View History

2019-03-12 11:52:08 +03:00
package ru.bvn13.adastor;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableCaching
@EnableScheduling
public class AdastorApp {
public static void main(String[] args) {
SpringApplication.run(AdastorApp.class, args);
}
}