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