123456789101112131415161718192021 |
- import Foundation
- import RxSwift
- public struct FeedbackRemoteAPI {
-
- public init() {}
-
- public func submit(text: String) -> Completable {
- let resource = StatusResource(path: .feedback, parameter: ["user_id": ShareUserId, "feedback": text])
- return resource.getStatus()
- }
- }
|