Add workflow output resolution
[ccsdk/apps.git] / ms / cds-sdc-listener / application / src / main / java / org / onap / ccsdk / apps / 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.apps.cdssdclistener;
10
11 import org.springframework.boot.SpringApplication;
12 import org.springframework.boot.autoconfigure.SpringBootApplication;
13
14 @SpringBootApplication
15 public class CdsSdcListenerApplication {
16     public static void main(String[] args) {
17         SpringApplication.run(CdsSdcListenerApplication.class, args);
18     }
19 }