Skip to content

Instantly share code, notes, and snippets.

@pzmudzinski
Created November 14, 2018 21:41
Show Gist options
  • Save pzmudzinski/5ff46c7a90bc314819eadd7722826deb to your computer and use it in GitHub Desktop.
Save pzmudzinski/5ff46c7a90bc314819eadd7722826deb to your computer and use it in GitHub Desktop.
import RxSwift
import RxCocoa
class BooksViewModel {
// MARK: inputs
let deleteCommand = PublishRelay<IndexPath>()
// MARK: outputs
let items: Observable<[Book]>
private let disposeBag = DisposeBag()
init(api: Api) {
items = api.getBooks()
// TBD
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment