Skip to content
Snippets Groups Projects
AnalyticsManagement.java 598 B
Newer Older
package cz.muni.fi.obs;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.scheduling.annotation.EnableScheduling;
Pavel Tetauer's avatar
Pavel Tetauer committed
import org.springframework.transaction.annotation.EnableTransactionManagement;

@SpringBootApplication
Pavel Tetauer's avatar
Pavel Tetauer committed
@EnableTransactionManagement
@EnableFeignClients
@EnableScheduling
public class AnalyticsManagement {

    public static void main(String[] args) {
        SpringApplication.run(AnalyticsManagement.class, args);