I got very confused and started mucking about with "spawn" when in fact all I needed was the "inline" extension type in orcx that allows the interpreter to expose custom constants.
23 lines
361 B
Rust
23 lines
361 B
Rust
use orchid_api as api;
|
|
|
|
pub mod atom;
|
|
pub mod ctx;
|
|
pub mod dealias;
|
|
#[cfg(feature = "tokio")]
|
|
pub mod dylib;
|
|
pub mod execute;
|
|
pub mod expr;
|
|
pub mod expr_store;
|
|
pub mod extension;
|
|
pub mod inline;
|
|
pub mod lex;
|
|
pub mod logger;
|
|
pub mod parse;
|
|
pub mod parsed;
|
|
#[cfg(feature = "tokio")]
|
|
pub mod subprocess;
|
|
mod sys_parser;
|
|
pub mod system;
|
|
mod task_set;
|
|
pub mod tree;
|