We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d056b7 commit c8a733bCopy full SHA for c8a733b
Auth0/CredentialsStorage.swift
@@ -31,6 +31,15 @@ public protocol CredentialsStorage {
31
32
}
33
34
+extension CredentialsStorage {
35
+
36
+ /// Default implementation that triggers an assertion failure.
37
+ public func deleteAllEntries() throws {
38
+ assertionFailure("deleteAllEntries() is not implemented. Implement this method in your custom CredentialsStorage.")
39
+ }
40
41
+}
42
43
/// Conformance to ``CredentialsStorage``.
44
extension SimpleKeychain: CredentialsStorage {
45
0 commit comments