// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 package app.settlement.outbound; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import lombok.extern.slf4j.Slf4j; @SpringBootApplication @Slf4j public class SettlementOutboundApplication { public static void main(String[] args) { SpringApplication.run(SettlementOutboundApplication.class, args); } }