feat: ✨ rtc peer connection offer
This commit is contained in:
parent
7434d131c4
commit
0aa65f0f60
17 changed files with 389 additions and 59 deletions
8
protocol/Cargo.toml
Normal file
8
protocol/Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "protocol"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
serde = { workspace = true }
|
||||
chrono = { workspace = true }
|
8
protocol/src/lib.rs
Normal file
8
protocol/src/lib.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
use chrono::{DateTime, Utc};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub struct Signal {
|
||||
pub username: String,
|
||||
pub time: DateTime<Utc>,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue