package com.bcxin.bus.domains;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableConfigurationProperties(BusConfigProperty.class)
@ComponentScan("com.bcxin.bus.domains")
public class BusSetupConfiguration {
}
