wit 0.16.0

A tool for building and publishing WIT packages to a registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module for CLI commands.

mod add;
mod build;
mod init;
mod publish;
mod update;

pub use add::*;
pub use build::*;
pub use init::*;
pub use publish::*;
pub use update::*;