1
0
This commit is contained in:
2022-04-20 21:47:36 +02:00
commit 8abb6d0372
31 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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 {
}