MOHttpManager+Track.swift 418 B

1234567891011121314151617
  1. //
  2. // MOHttpManager+Track.swift
  3. // MiMoLive
  4. //
  5. // Created by OneeChan on 2025/10/28.
  6. //
  7. import Foundation
  8. let kNetPath_TrackInteractReport = "/track/interact/report"
  9. extension MOHttpManager {
  10. @objc func reportVisistHostPage(_ uid: String, handler: @escaping (String?) -> Void) {
  11. sendPostRequest(path: kNetPath_TrackInteractReport, params: ["anchorUserId": uid, "type": 5], handler: handler)
  12. }
  13. }