No Description

HomeRepository.swift 395B

    // // HomeRepository.swift // PaiaiDataKit // // 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) } }