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

use crate::actions::local_actions::register_set_upstream_vault_action;

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