1//! Zink package manager. 2 3mod build; 4pub mod examples; 5mod new; 6pub mod utils; 7 8pub use self::{build::Build, new::New}; 9pub use zinkc::cli::Compile;