diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-11-03 20:01:02 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-03 20:01:02 +0800 |
| commit | f58fcaed4d7da4aa23e8500fb4720836378c3440 (patch) | |
| tree | 0fd0dae1bdc1602a82395b2c11660f80c95f1b20 /crates/vcs_actions/src/registry/server_registry.rs | |
| parent | ffb5805291343ba1cd4bb4f38788d9ce6e3e2ba6 (diff) | |
| parent | cf2402fff1632fd673a1865d83cefc80b75ed85f (diff) | |
Merge pull request #34 from JustEnoughVCS/jvcs_dev_actions
Jvcs dev actions
Diffstat (limited to 'crates/vcs_actions/src/registry/server_registry.rs')
| -rw-r--r-- | crates/vcs_actions/src/registry/server_registry.rs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/crates/vcs_actions/src/registry/server_registry.rs b/crates/vcs_actions/src/registry/server_registry.rs index 3b6ab17..eade391 100644 --- a/crates/vcs_actions/src/registry/server_registry.rs +++ b/crates/vcs_actions/src/registry/server_registry.rs @@ -1,12 +1,19 @@ use action_system::action_pool::ActionPool; -use crate::actions::local_actions::{ - register_set_upstream_vault_action, register_update_to_latest_info_action, +use crate::actions::{ + local_actions::{register_set_upstream_vault_action, register_update_to_latest_info_action}, + sheet_actions::register_make_sheet_action, }; pub fn server_action_pool() -> ActionPool { let mut pool = ActionPool::new(); + + // Local Actions register_set_upstream_vault_action(&mut pool); register_update_to_latest_info_action(&mut pool); + + // Sheet Actions + register_make_sheet_action(&mut pool); + pool } |
