Skip to content

Commit ab77c8b

Browse files
authored
Update README.md
1 parent fb6c903 commit ab77c8b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,15 @@ public protocol ScreenStoring {
3030
public struct UserDefaultScreenStorer: ScreenStoring {
3131
// ...
3232
}
33+
34+
// MARK: ScreenLoading
35+
public protocol ScreenLoading {
36+
func load(withProvider provider: ScreenProviding) -> AnyPublisher<[SomeScreen], Error>
37+
}
38+
39+
// MARK: ScreenLoading Basic Implementation
40+
extension SomeScreen: ScreenLoading {
41+
// ...
42+
}
3343
```
44+

0 commit comments

Comments
 (0)