xtask-todo-lib 0.1.32

Todo workspace library and cargo devshell subcommand
Documentation
1
2
3
4
5
6
7
8
use std::cell::RefCell;
use std::rc::Rc;

use crate::devshell::vm::SessionHolder;

pub(super) fn vm_session_test() -> Rc<RefCell<SessionHolder>> {
    Rc::new(RefCell::new(SessionHolder::new_host()))
}