use of io.paradoxical.dropwizard.swagger.SwaggerAssetsBundle in project microservices by pwillhan.
the class ServiceApplication method initialize.
@Override
public void initialize(Bootstrap<ServiceConfiguration> bootstrap) {
bootstrap.addBundle(new TemplateConfigBundle());
initializeViews(bootstrap);
bootstrap.addBundle(new SwaggerAssetsBundle(this::getPublicSwagger));
initializeDependencyInjection(bootstrap);
}
Aggregations