summaryrefslogtreecommitdiff
path: root/src/main/java/net/geedge/confagent/ConfagentApplication.java
blob: 18887c5f734884fb3c3bdf8d800dde742dc9a2da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package net.geedge.confagent;

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

@SpringBootApplication
public class ConfagentApplication {

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

}