com.raynigon.unit_api.springdoc.UnitApiSpringdocConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springdoc-starter Show documentation
Show all versions of springdoc-starter Show documentation
The springdoc-starter is a part of the unit-api
package com.raynigon.unit_api.springdoc;
import org.springdoc.core.customizers.PropertyCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class UnitApiSpringdocConfiguration {
@Bean
public PropertyCustomizer unitApiPropertyCustomizer() {
return new UnitApiPropertyCustomizer();
}
}