Files
liteFlow/liteflow-spring-boot-starter/src/main/java/com/yomahub/liteflow/springboot/LiteflowComponentScanerAutoConfiguration.java
2021-03-19 13:25:05 +08:00

15 lines
382 B
Java

package com.yomahub.liteflow.springboot;
import com.yomahub.liteflow.spring.ComponentScaner;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class LiteflowComponentScanerAutoConfiguration {
@Bean
public ComponentScaner componentScaner(){
return new ComponentScaner();
}
}