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

com.github.kislayverma.rulette.rest.Main Maven / Gradle / Ivy

Go to download

A containerless deployment of rulette-core to expose its capabilities as REST services

There is a newer version: 1.2.6
Show newest version
package com.github.kislayverma.rulette.rest;

import org.restexpress.util.Environment;

public class Main
{
	public static void main(String[] args) throws Exception {
		Configuration config = Environment.load(args, Configuration.class);
		Server server = new Server(config);
		server.start().awaitShutdown();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy