zed2: Port ProjectSharedNotification

This commit is contained in:
Julia 2023-12-07 17:10:54 -05:00
parent 853daf953b
commit f3cbce7e86
3 changed files with 97 additions and 256 deletions

View file

@ -3,9 +3,9 @@ use std::sync::Arc;
use workspace::AppState;
pub mod incoming_call_notification;
// pub mod project_shared_notification;
pub mod project_shared_notification;
pub fn init(app_state: &Arc<AppState>, cx: &mut AppContext) {
incoming_call_notification::init(app_state, cx);
//project_shared_notification::init(app_state, cx);
project_shared_notification::init(app_state, cx);
}