Created
August 10, 2017 13:56
-
-
Save ncreated/cad80b160a2e55f8e755e43dd39644ed to your computer and use it in GitHub Desktop.
Medium blogpost snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import RxSwift | |
| protocol ToggleStorage { | |
| func read() -> Observable<Bool> | |
| func save(value: Bool) -> Observable<Void> | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment