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