2024-01-09 02:54:59 +00:00
|
|
|
mod collab_notification;
|
|
|
|
pub mod incoming_call_notification;
|
|
|
|
pub mod project_shared_notification;
|
|
|
|
|
|
|
|
#[cfg(feature = "stories")]
|
|
|
|
mod stories;
|
|
|
|
|
2023-10-17 22:43:06 +00:00
|
|
|
use gpui::AppContext;
|
2022-05-13 00:24:00 +00:00
|
|
|
use std::sync::Arc;
|
2023-10-13 18:21:45 +00:00
|
|
|
use workspace::AppState;
|
|
|
|
|
2024-01-09 02:54:59 +00:00
|
|
|
#[cfg(feature = "stories")]
|
|
|
|
pub use stories::*;
|
2022-05-13 00:24:00 +00:00
|
|
|
|
2023-10-13 18:21:45 +00:00
|
|
|
pub fn init(app_state: &Arc<AppState>, cx: &mut AppContext) {
|
|
|
|
incoming_call_notification::init(app_state, cx);
|
|
|
|
project_shared_notification::init(app_state, cx);
|
|
|
|
}
|