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

io.seldon.wrapper.App Maven / Gradle / Ivy

package io.seldon.wrapper;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.context.annotation.Import;
import org.springframework.scheduling.annotation.EnableAsync;

import io.seldon.wrapper.config.AppConfig;

@SpringBootApplication
@EnableAsync
@Import({ AppConfig.class })
public class App {
    public static void main(String[] args) throws Exception {
        SpringApplication.run(App.class, args);
    }
    
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy