From e3f4b8188515eeec149eec0405b51e1b57f6e7bb Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 12 Jan 2026 05:12:10 +0800 Subject: Rename and reorganize remote actions modules --- actions/src/registry/server_registry.rs | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'actions/src/registry/server_registry.rs') diff --git a/actions/src/registry/server_registry.rs b/actions/src/registry/server_registry.rs index 356e640..013cdbd 100644 --- a/actions/src/registry/server_registry.rs +++ b/actions/src/registry/server_registry.rs @@ -1,13 +1,20 @@ use action_system::action_pool::ActionPool; -use crate::actions::{ - local_actions::{register_set_upstream_vault_action, register_update_to_latest_info_action}, - sheet_actions::{ - register_drop_sheet_action, register_edit_mapping_action, register_make_sheet_action, - register_merge_share_mapping_action, register_share_mapping_action, +use crate::remote_actions::{ + content_manage::track::register_track_file_action, + edit_right_manage::change_virtual_file_edit_right::register_change_virtual_file_edit_right_action, + mapping_manage::{ + edit_mapping::register_edit_mapping_action, + merge_share_mapping::register_merge_share_mapping_action, + share_mapping::register_share_mapping_action, + }, + sheet_manage::{ + drop_sheet::register_drop_sheet_action, make_sheet::register_make_sheet_action, + }, + workspace_manage::{ + set_upstream_vault::register_set_upstream_vault_action, + update_to_latest_info::register_update_to_latest_info_action, }, - track_action::register_track_file_action, - user_actions::register_change_virtual_file_edit_right_action, }; pub fn server_action_pool() -> ActionPool { -- cgit