pl.codewise.spotty.app.SpottyApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotty-app Show documentation
Show all versions of spotty-app Show documentation
Manage AWS EC2 spot instances with ease and confidence
The newest version!
package pl.codewise.spotty.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
import org.springframework.scheduling.annotation.EnableScheduling;
import pl.codewise.spotty.core.CoreConfiguration;
@SpringBootApplication
@EnableScheduling
@Import(CoreConfiguration.class)
@PropertySource(value = "classpath:/git.properties", ignoreResourceNotFound = true)
public class SpottyApplication {
public static void main(String[] args) {
SpringApplication.run(SpottyApplication.class, args);
}
}