1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Everything dealing with scripting

use anyhow::Result;
use gluon::{import::add_extern_module, ThreadExt};

// use crate::ui::{UiCommand, UiUpdate};

/// Creates a VM for running scripts
pub async fn create_script_vm() -> Result<()> {
    let vm = gluon::new_vm_async().await;

    Ok(())
}