mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-21 12:58:09 +08:00
更改package成com.yomahub
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.yomahub.liteflow.springboot;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
public class LiteflowProperty {
|
||||
|
||||
@Value("${liteflow.ruleSource}")
|
||||
private String ruleSource;
|
||||
|
||||
public String getRuleSource() {
|
||||
return ruleSource;
|
||||
}
|
||||
|
||||
public void setRuleSource(String ruleSource) {
|
||||
this.ruleSource = ruleSource;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user