Minor cleanup

This commit is contained in:
2023-08-05 10:05:37 -07:00
parent c56ba3d62e
commit 8b20395b3e
5 changed files with 8 additions and 21 deletions

View File

@ -6,15 +6,17 @@ pub mod context;
pub mod errors;
pub mod formattedtext;
mod entry;
use crate::entry::main_e;
use crate::parser::substitute;
use crate::errors::DaisyError;
use crate::formattedtext::FormattedText;
use crate::context::Context;
use crate::parser::LineLocation;
// Run main script for target system
mod entrypoint;
use crate::entrypoint::main_e;
#[cfg(test)]
mod tests;