2022-09-28 17:14:31 +00:00
|
|
|
mod collab_titlebar_item;
|
|
|
|
mod contacts_popover;
|
2022-09-29 13:33:33 +00:00
|
|
|
mod incoming_call_notification;
|
2022-10-04 14:55:41 +00:00
|
|
|
mod project_shared_notification;
|
2022-09-28 17:14:31 +00:00
|
|
|
|
|
|
|
pub use collab_titlebar_item::CollabTitlebarItem;
|
2022-10-04 14:55:41 +00:00
|
|
|
use gpui::MutableAppContext;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use workspace::AppState;
|
2022-09-28 17:14:31 +00:00
|
|
|
|
2022-10-04 14:55:41 +00:00
|
|
|
pub fn init(app_state: Arc<AppState>, cx: &mut MutableAppContext) {
|
2022-09-28 17:14:31 +00:00
|
|
|
contacts_popover::init(cx);
|
|
|
|
collab_titlebar_item::init(cx);
|
2022-10-04 17:25:48 +00:00
|
|
|
incoming_call_notification::init(app_state.clone(), cx);
|
2022-10-04 14:55:41 +00:00
|
|
|
project_shared_notification::init(app_state, cx);
|
2022-09-28 17:14:31 +00:00
|
|
|
}
|