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

org.ikasan.dashboard.Application Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package org.ikasan.dashboard;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * The entry point of the Spring Boot application.
 */
@SpringBootApplication
public class Application {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy