UpdateProfile applies deterministic profile updates and returns whether anything changed.
(updates map[string]string)
| 172 | // UpdateProfile applies deterministic profile updates and returns whether |
| 173 | // anything changed. |
| 174 | func (ms *MemoryStore) UpdateProfile(updates map[string]string) bool { |
| 175 | return ms.manager.UpdateProfile(updates) |
| 176 | } |
| 177 | |
| 178 | // ForgetFacts removes facts matching substr and returns how many were removed. |
| 179 | func (ms *MemoryStore) ForgetFacts(substr string) int { |
nothing calls this directly
no test coverage detected