shulkerscript/base/
mod.rs

1//! The base module contains the core functionality of the `Shulkerscript` language.
2
3pub mod source_file;
4
5mod error;
6#[doc(inline)]
7pub use error::{Error, Result};
8
9mod diagnostic;
10pub use diagnostic::{Handler, PrintHandler, SilentHandler, VoidHandler};
11
12mod file_provider;
13pub use file_provider::{Error as FileProviderError, FileProvider, FsProvider};
14
15pub mod log;