001package io.jstach.opt.dropwizard.example; 002 003import io.dropwizard.core.Configuration; 004 005/** 006 * Since JStachio is mostly static configuration this class is empty. To see the static 007 * configuration {@linkplain io.jstach.opt.dropwizard.example see the package-info}. 008 * 009 * @author agentgt 010 */ 011public class ExampleConfiguration extends Configuration { 012 013 /** 014 * Do nothing constructor 015 */ 016 public ExampleConfiguration() { 017 super(); 018 } 019 020}