notifications.rs

 1use gpui::AppContext;
 2use std::sync::Arc;
 3use workspace::AppState;
 4
 5pub mod incoming_call_notification;
 6// pub mod project_shared_notification;
 7
 8pub fn init(app_state: &Arc<AppState>, cx: &mut AppContext) {
 9    incoming_call_notification::init(app_state, cx);
10    //project_shared_notification::init(app_state, cx);
11}