Skip to content

Instantly share code, notes, and snippets.

@ncreated
Created August 10, 2017 13:56
Show Gist options
  • Save ncreated/cad80b160a2e55f8e755e43dd39644ed to your computer and use it in GitHub Desktop.
Save ncreated/cad80b160a2e55f8e755e43dd39644ed to your computer and use it in GitHub Desktop.
Medium blogpost snippet
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