(ruleSet *RuleSet)
| 39 | } |
| 40 | |
| 41 | func (this *RuleGroup) AddRuleSet(ruleSet *RuleSet) { |
| 42 | this.RuleSets = append(this.RuleSets, ruleSet) |
| 43 | } |
| 44 | |
| 45 | func (this *RuleGroup) FindRuleSet(id int64) *RuleSet { |
| 46 | for _, ruleSet := range this.RuleSets { |
no outgoing calls