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

io.mosip.pmp.partner.PartnerserviceApplication Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
package io.mosip.pmp.partner;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.web.client.RestTemplate;

import springfox.documentation.swagger2.annotations.EnableSwagger2;


/**
 * @author sanjeev.shrivastava
 *
 */

@SpringBootApplication
@ComponentScan({ "io.mosip.pmp.partner.*", "io.mosip.kernel.auth.adapter.*" })
@EnableSwagger2
public class PartnerserviceApplication{

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy