boltbuild 0.1.0

BoltBuild is a programmable build system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::command::CommandSpec;

impl CommandSpec {
    pub(super) fn create_init() -> Self {
        Self {
            name: "init".to_string(),
            fs_name: "init".to_string(),
            function: "init".to_string(),
            envs: vec![0],
        }
    }
}