// // GroupRepository.swift // PaiaiDataKit // // Created by ffib on 2019/1/2. // Copyright © 2019 yb. All rights reserved. // import Foundation import RxSwift protocol GroupRepository { func load(page: Int) -> Single> func remove(groupId: String) -> Completable func join(type: QRType, parameter: Parameter) -> Single func create(groupName: String, avatar: String) -> Single }