RuleStore implements a store.RuleStore backed by a relational database.
| 50 | |
| 51 | // RuleStore implements a store.RuleStore backed by a relational database. |
| 52 | type RuleStore struct { |
| 53 | db *sqlx.DB |
| 54 | pCache store.PrincipalInfoCache |
| 55 | } |
| 56 | |
| 57 | type rule struct { |
| 58 | ID int64 `db:"rule_id"` |
nothing calls this directly
no outgoing calls
no test coverage detected