needs to create functions called from within the steel

This commit is contained in:
filipriec
2025-03-15 00:53:48 +01:00
parent f8b2c4b136
commit 79f57ddaed
2 changed files with 2 additions and 0 deletions

View File

View File

@@ -1,6 +1,8 @@
// src/steel/server/mod.rs // src/steel/server/mod.rs
pub mod execution; pub mod execution;
pub mod syntax_parser; pub mod syntax_parser;
pub mod functions;
pub use execution::*; pub use execution::*;
pub use syntax_parser::*; pub use syntax_parser::*;
pub use functions::*;