Hendrik Jungnitsch
2022-09-30 6eef399086219d1c2fb29da3802e17955b6b07df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package de.gedoplan.seminar.sbt.di.exercise;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.scheduling.annotation.EnableAsync;
 
@EnableAsync
@ConfigurationPropertiesScan
@SpringBootApplication
public class SbtDiExerciseApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(SbtDiExerciseApplication.class, args);
    }
 
}