12 lines
389 B
Java
12 lines
389 B
Java
package de.nbscloud.webcontainer.config;
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
@ConfigurationProperties(prefix = "nbs-cloud.web-container")
|
|
@ComponentScan("de.nbscloud.files")
|
|
public class WebContainerConfig {
|
|
}
|