InteractionService.swift 384 Bytes
//
//  InteractionService.swift
//  hippo
//
//  Created by shihao on 2025/7/1.
//

import Foundation

class InteractionService {
    private let apiClient = APIClient.shared
    
    func sendInteraction(actionType: InteractionActionType) async throws -> EmptyResponse {
        return try await apiClient.request(InteractionEndpoint.sendInteraction(actionType: actionType))
    }
}