devai 0.5.12

Command Agent runner to accelerate production coding with genai.
// region:    --- Modules

mod exec_list;
mod exec_new;
mod exec_run;
mod support;

use exec_list::*;
use exec_new::*;
use exec_run::*;

mod exec_command;
mod exec_event;
mod executor;

pub use exec_command::*;
pub use exec_event::*;
pub use executor::*;

// endregion: --- Modules