io.rtr.alchemy.example.ServiceExample Maven / Gradle / Ivy
package io.rtr.alchemy.example;
import io.rtr.alchemy.service.AlchemyService;
import io.rtr.alchemy.service.config.AlchemyServiceConfigurationImpl;
/** This example runs an instance of the Alchemy Dropwizard service with a basic configuration */
public class ServiceExample extends AlchemyService {
public static void main(String[] args) throws Exception {
new ServiceExample().run(args);
}
@Override
public String getName() {
return "alchemy-example";
}
}