No Description

HomePhotoRepository.swift 411B

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