From b1d571fd730efe257423ee1fcd00ff4121e24ebd Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 23 Jan 2026 04:10:00 +0800 Subject: Add local actions modules and ProcessActionError enum - Add local_actions module with account_manage and current_sheet submodules - Add ProcessActionError enum with authorization and registration variants - Add missing import for MemberId in error module --- actions/src/local_actions/account_manage.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 actions/src/local_actions/account_manage.rs (limited to 'actions/src/local_actions/account_manage.rs') diff --git a/actions/src/local_actions/account_manage.rs b/actions/src/local_actions/account_manage.rs new file mode 100644 index 0000000..03a7851 --- /dev/null +++ b/actions/src/local_actions/account_manage.rs @@ -0,0 +1,3 @@ +pub mod register_account; +pub mod remove_account; +pub mod switch_account; -- cgit