| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.boot.ApplicationArguments; |
| | | import org.springframework.boot.ApplicationRunner; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.ArrayList; |
| | |
| | | |
| | | @Component |
| | | @Slf4j |
| | | @ConditionalOnProperty(name = "kangaroohy.milo.enabled", havingValue = "true") |
| | | public class OpcCustomRunner implements ApplicationRunner { |
| | | @Autowired |
| | | private MiloService miloService; |