Move IncomingCall into call crate

This commit is contained in:
Antonio Scandurra 2022-10-06 09:52:03 +02:00
parent 55cc142319
commit 7763acbdd5
5 changed files with 15 additions and 16 deletions

View file

@ -1,6 +1,9 @@
use crate::participant::{ParticipantLocation, RemoteParticipant};
use crate::{
participant::{ParticipantLocation, RemoteParticipant},
IncomingCall,
};
use anyhow::{anyhow, Result};
use client::{incoming_call::IncomingCall, proto, Client, PeerId, TypedEnvelope, User, UserStore};
use client::{proto, Client, PeerId, TypedEnvelope, User, UserStore};
use collections::{HashMap, HashSet};
use futures::StreamExt;
use gpui::{AsyncAppContext, Entity, ModelContext, ModelHandle, MutableAppContext, Task};