//
//  ParticipantSource+Extensions.swift
//  humand
//

import Foundation
import StreamVideo

extension ParticipantSource {
  var stringValue: String {
    switch self {
    case .rtmp: return "rtmp"
    case .whip: return "whip"
    case .sip: return "sip"
    case .rtsp: return "rtsp"
    case .srt: return "srt"
    default: return "webrtc"
    }
  }
}
