(
state: AppState,
udid: String,
x: f64,
y: f64,
phase: String,
)
| 2809 | } |
| 2810 | |
| 2811 | async fn handle_android_control_touch( |
| 2812 | state: AppState, |
| 2813 | udid: String, |
| 2814 | x: f64, |
| 2815 | y: f64, |
| 2816 | phase: String, |
| 2817 | ) -> Result<(), AppError> { |
| 2818 | run_android_action(state, move |android| { |
| 2819 | android.send_touch(&udid, x, y, &phase) |
| 2820 | }) |
| 2821 | .await |
| 2822 | } |
| 2823 | |
| 2824 | async fn webrtc_offer( |
| 2825 | State(state): State<AppState>, |
no test coverage detected