aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java
blob: b00b2e148b4b20bfd49241f3e108e3ff3759a17d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.onap.boot.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringBootApp {

	public static void main(String[] args) {
		SpringApplication.run(SpringBootApp.class, args);
	}
}