| 254 | } |
| 255 | |
| 256 | type inMemoryPersister struct { |
| 257 | savedConfig map[string]string |
| 258 | } |
| 259 | |
| 260 | func (i *inMemoryPersister) Persist(config map[string]string) error { |
| 261 | i.savedConfig = make(map[string]string) |
nothing calls this directly
no outgoing calls
no test coverage detected