mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-15 04:22:09 +08:00
15 lines
382 B
Java
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();
|
|
}
|
|
}
|