org.bidib.wizard.localhost.client.autoconfig.LocalHostClientAutoConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-localhost-client Show documentation
Show all versions of bidibwizard-localhost-client Show documentation
jBiDiB BiDiB Wizard localhost client POM
package org.bidib.wizard.localhost.client.autoconfig;
import org.bidib.wizard.localhost.client.config.LocalHostClientConfig;
import org.bidib.wizard.localhost.config.LocalHostSettings;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
@Configuration
@EnableConfigurationProperties(LocalHostSettings.class)
@Import(LocalHostClientConfig.class)
public class LocalHostClientAutoConfig {
}