// // 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> { return homeRemoteAPI.loadContent(page: page) } }