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

com.github.euler.api.ESEulerHTTPAPI Maven / Gradle / Ivy

The newest version!
package com.github.euler.api;

import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

import com.typesafe.config.Config;

import springfox.documentation.swagger2.annotations.EnableSwagger2;

@SpringBootApplication
@EnableSwagger2
@ComponentScan(basePackages = { "com.github.euler.api", "com.github.euler.api.handler", "io.swagger.configuration" })
public class ESEulerHTTPAPI extends EulerHTTPAPI {

    public ESEulerHTTPAPI(Config config) {
        super(config);
    }

    public ESEulerHTTPAPI() {
        super();
    }

    public static void main(String[] args) {
        ESEulerHTTPAPI api = new ESEulerHTTPAPI();
        api.start(args);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy