summaryrefslogtreecommitdiffstats
path: root/dcaedt_catalog/service/src/main/java/org/onap/sdc/dcae/catalog/engine/CatalogEngine.java
blob: 98db815c27e58d4b5df5e9a0df66529562637c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.sdc.dcae.catalog.engine;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@ComponentScan("org.onap.sdc.dcae")
public class CatalogEngine {

	public static void main(String[] args) {

			SpringApplication.run(CatalogEngine.class, args);
	}

}