package com.goldenchart; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.context.properties.ConfigurationPropertiesScan; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; @SpringBootApplication @ConfigurationPropertiesScan @EnableAsync @EnableScheduling public class GoldenChartApplication { public static void main(String[] args) { SpringApplication.run(GoldenChartApplication.class, args); } }