No Description

UserInfoRemoteAPI.swift 247B

12345678910111213141516
  1. //
  2. // UserInfoRemoteAPI.swift
  3. // PaiaiDataKit
  4. //
  5. // Created by ffib on 2018/12/25.
  6. // Copyright © 2018 yb. All rights reserved.
  7. //
  8. import Foundation
  9. import RxSwift
  10. public protocol UserInfoRemoteAPI {
  11. func login() -> Single<UserInfo>
  12. }