All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dgrandemange.idempotencereceiver.examples.webapp.App Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package com.github.dgrandemange.idempotencereceiver.examples.webapp;

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

import com.github.dgrandemange.idempotencereceiver.examples.webapp.config.SwaggerConfig;

@SpringBootApplication
@Import(SwaggerConfig.class)
public class App {

	public static void main(String[] args) {
		SpringApplication.run(App.class, args);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy