refactor: ♻️ error, send and receive signals

This commit is contained in:
Ahmet Kaan Gümüş 2025-04-14 16:13:42 +03:00
parent 85fb4fb2af
commit f781afe995
3 changed files with 89 additions and 58 deletions

View file

@ -37,7 +37,7 @@ pub async fn offer(username: String) {
log!("{}", rtc_session_offer);
let data = rtc_session_offer;
send_offer(&username, &data).await;
send_offer(&username, &data).await.unwrap();
}
pub async fn answer() {}