Move IncomingCall
into call
crate
This commit is contained in:
parent
55cc142319
commit
7763acbdd5
5 changed files with 15 additions and 16 deletions
|
@ -3,7 +3,6 @@ pub mod test;
|
|||
|
||||
pub mod channel;
|
||||
pub mod http;
|
||||
pub mod incoming_call;
|
||||
pub mod user;
|
||||
|
||||
use anyhow::{anyhow, Context, Result};
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
use crate::User;
|
||||
use std::sync::Arc;
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct IncomingCall {
|
||||
pub room_id: u64,
|
||||
pub caller: Arc<User>,
|
||||
pub participants: Vec<Arc<User>>,
|
||||
pub initial_project_id: Option<u64>,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue