package com.bcxin.sync;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.retry.annotation.EnableRetry;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@SpringBootApplication
@EnableScheduling
@EnableRetry
@EnableAsync
@EnableSwagger2
public class BcxSyncApplication {
	public static void main(String[] args) {
		SpringApplication.run(BcxSyncApplication.class, args);
	}
}
