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

18 lines
466 B
Java

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);
}
}