Keine Beschreibung

HomeRepository.swift 396B

    // // HomeRepository.swift // PaiAi // // Created by FFIB on 16/3/31. // Copyright © 2016年 FFIB. All rights reserved. // import Foundation import RxCocoa import RxSwift struct HomeRepository: PhotoRepository { var homeRemoteAPI = HomeRemoteAPI() func load(page: Int) -> Single<NetworkArrayData<PhotoItem>> { return homeRemoteAPI.loadContent(page: page) } }