Files
orchid/orchid-host/src/lib.rs
Lawrence Bethlenfalvy 09cfcb1839 partway towards commands
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.
2026-03-13 16:48:42 +01:00

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;