mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-06-09 05:48:20 +00:00
14 lines
522 B
Java
14 lines
522 B
Java
package tech.ailef.dbadmin;
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
@ConditionalOnProperty(name = "dbadmin.enabled", matchIfMissing = true)
|
|
@ComponentScan
|
|
@EnableConfigurationProperties(DbAdminProperties.class)
|
|
@AutoConfiguration
|
|
public class DbAdminAutoConfiguration {
|
|
|
|
} |