WatchAppSchema.swift 689 Bytes
//
//  WatchAppSchema.swift
//  Runner Watch App
//
//  Created by 权海 on 2026/6/17.
//

import Foundation

/*
 doublefeel.watchapp://  打开watch app
 doublefeel.watchapp://pressure/hrv?userId=0  单人hrv压力
 doublefeel.watchapp://pressure/realtime?userId=0    单人实时压力
 doublefeel.watchapp://pressure/hrv 双人hrv压力
 doublefeel.watchapp://pressure/realtime 双人实时压力
 doublefeel.watchapp://summary?userId=0 // 单人今日状态
 */
enum WatchAppSchema: String{
    case pressureHrv = "doublefeel.watchapp://pressure/hrv"
    case pressureRealTime = "doublefeel.watchapp://pressure/realtime"
    case pressureSummary = "doublefeel.watchapp://summary"
}