[go: up one dir, main page]

forc/
lib.rs

1pub mod cli;
2pub mod ops;
3pub mod utils;
4
5#[cfg(feature = "test")]
6pub mod test {
7    pub use crate::cli::BuildCommand;
8    pub use crate::ops::{forc_build, forc_check};
9}
10
11#[cfg(feature = "util")]
12pub mod util {
13    pub use sway_utils::constants;
14}