blob: bdd6a6501b1b8f348378e9da0605fc5d8ec19cf2 (
plain)
1
2
3
4
5
6
7
8
9
|
use action_system::action_pool::ActionPool;
use crate::actions::local_actions::SetUpstreamVaultAction;
pub fn server_action_pool() -> ActionPool {
let mut pool = ActionPool::new();
SetUpstreamVaultAction::register_to_pool(&mut pool);
pool
}
|