shulkerscript-lang/src/base/mod.rs

16 lines
341 B
Rust

//! The base module contains the core functionality of the `ShulkerScript` language.
pub mod source_file;
mod error;
#[doc(inline)]
pub use error::{Error, Result};
mod diagnostic;
pub use diagnostic::{Handler, PrintHandler, SilentHandler, VoidHandler};
mod file_provider;
pub use file_provider::{FileProvider, FsProvider};
pub mod log;