Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / cds-sdc-listener / application / src / main / java / org / onap / ccsdk / cds / cdssdclistener / CdsSdcListenerApplication.java
1 /*
2  * Copyright (C) 2019 Bell Canada. All rights reserved.
3  *
4  * NOTICE:  All the intellectual and technical concepts contained herein are
5  * proprietary to Bell Canada and are protected by trade secret or copyright law.
6  * Unauthorized copying of this file, via any medium is strictly prohibited.
7  */
8
9 package org.onap.ccsdk.cds.cdssdclistener;
10
11 import org.springframework.boot.SpringApplication;
12 import org.springframework.boot.autoconfigure.SpringBootApplication;
13 import org.springframework.boot.context.properties.EnableConfigurationProperties;
14
15 @SpringBootApplication
16 @EnableConfigurationProperties(CdsSdcListenerConfiguration.class)
17 public class CdsSdcListenerApplication {
18     public static void main(String[] args) {
19         SpringApplication.run(CdsSdcListenerApplication.class, args);
20     }
21 }