Allow adding module blocks to engine state

This commit is contained in:
Jakub Žádník
2021-09-26 15:00:03 +03:00
parent e9f1575924
commit 12cf1a8f83
4 changed files with 56 additions and 7 deletions

View File

@ -15,8 +15,8 @@ mod let_env;
mod lines;
mod list_git_branches;
mod ls;
mod run_external;
mod module;
mod run_external;
mod table;
mod where_;
@ -37,6 +37,6 @@ pub use let_env::LetEnv;
pub use lines::Lines;
pub use list_git_branches::ListGitBranches;
pub use ls::Ls;
pub use run_external::External;
pub use module::Module;
pub use run_external::External;
pub use table::Table;