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

com.yammer.breakerbox.dashboard.BreakerboxDashboardService Maven / Gradle / Ivy

There is a newer version: 0.6.5
Show newest version
package com.yammer.breakerbox.dashboard;

import com.yammer.breakerbox.dashboard.bundle.BreakerboxDashboardBundle;
import io.dropwizard.Application;
import io.dropwizard.Configuration;
import io.dropwizard.setup.Bootstrap;
import io.dropwizard.setup.Environment;

public class BreakerboxDashboardService extends Application {
    private BreakerboxDashboardService() {}

    public static void main(String[] args) throws Exception {
        new BreakerboxDashboardService().run(args);
    }
    @Override
    public void initialize(Bootstrap bootstrap) {
        bootstrap.addBundle(new BreakerboxDashboardBundle());
    }

    @Override
    public void run(Configuration configuration, Environment environment) throws Exception {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy