diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-23 04:10:00 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-23 04:10:00 +0800 |
| commit | b1d571fd730efe257423ee1fcd00ff4121e24ebd (patch) | |
| tree | 8369ba680a5375fff5c6399a17052a3b8c56e3fb /actions/src/local_actions | |
| parent | 8713864b0351c71d250814a554e31dfd0499b741 (diff) | |
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
Diffstat (limited to 'actions/src/local_actions')
7 files changed, 5 insertions, 0 deletions
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; diff --git a/actions/src/local_actions/account_manage/register_account.rs b/actions/src/local_actions/account_manage/register_account.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/actions/src/local_actions/account_manage/register_account.rs diff --git a/actions/src/local_actions/account_manage/remove_account.rs b/actions/src/local_actions/account_manage/remove_account.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/actions/src/local_actions/account_manage/remove_account.rs diff --git a/actions/src/local_actions/account_manage/switch_account.rs b/actions/src/local_actions/account_manage/switch_account.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/actions/src/local_actions/account_manage/switch_account.rs diff --git a/actions/src/local_actions/current_sheet.rs b/actions/src/local_actions/current_sheet.rs new file mode 100644 index 0000000..785d7ee --- /dev/null +++ b/actions/src/local_actions/current_sheet.rs @@ -0,0 +1,2 @@ +pub mod exit_sheet; +pub mod use_sheet; diff --git a/actions/src/local_actions/current_sheet/exit_sheet.rs b/actions/src/local_actions/current_sheet/exit_sheet.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/actions/src/local_actions/current_sheet/exit_sheet.rs diff --git a/actions/src/local_actions/current_sheet/use_sheet.rs b/actions/src/local_actions/current_sheet/use_sheet.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/actions/src/local_actions/current_sheet/use_sheet.rs |
