use collab_folder::hierarchy_builder::ParentChildViews; use flowy_error::FlowyResult; use flowy_folder_pub::entities::ImportFrom; use lib_infra::async_trait::async_trait; use std::collections::HashMap; #[async_trait] pub trait UserWorkspaceService: Send + Sync { async fn import_views( &self, source: &ImportFrom, views: Vec, orphan_views: Vec, parent_view_id: Option, ) -> FlowyResult<()>; async fn import_database_views( &self, ids_by_database_id: HashMap>, ) -> FlowyResult<()>; /// Removes local indexes when a workspace is left/deleted fn did_delete_workspace(&self, workspace_id: String) -> FlowyResult<()>; }