1 package fr.tiogars.domaintemplate;
2
3 import org.springframework.boot.SpringApplication;
4 import org.springframework.boot.autoconfigure.SpringBootApplication;
5 import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
6
7 /**
8 * Bootstraps the DomainTemplate Spring application.
9 *
10 * @since 0.1.0
11 */
12 @SpringBootApplication
13 @ConfigurationPropertiesScan
14 public class DomainTemplateApplication {
15
16 /**
17 * Starts the application.
18 *
19 * @param args command-line arguments passed to Spring Boot
20 */
21 public static void main(String[] args) {
22 SpringApplication.run(DomainTemplateApplication.class, args);
23 }
24 }