Add removeAll method to KeyValueStore

This commit is contained in:
ismailgulek
2021-05-10 17:21:44 +03:00
parent cb2526203b
commit 6cca4543b2
4 changed files with 10 additions and 2 deletions
@@ -92,4 +92,8 @@ extension MemoryStore: KeyValueStore {
map.removeValue(forKey: key)
}
func removeAll() throws {
map.removeAll()
}
}