summaryrefslogtreecommitdiff
path: root/crates/vcs_actions/src/registry/server_registry.rs
blob: 3b6ab171210ea657e0ecb9ac2f3d2677aa4fefb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use action_system::action_pool::ActionPool;

use crate::actions::local_actions::{
    register_set_upstream_vault_action, register_update_to_latest_info_action,
};

pub fn server_action_pool() -> ActionPool {
    let mut pool = ActionPool::new();
    register_set_upstream_vault_action(&mut pool);
    register_update_to_latest_info_action(&mut pool);
    pool
}