wasm_componentize/
lib.rs

1#[cfg(feature = "cli")]
2pub mod cli;
3
4pub fn componentize(bytes: &[u8]) -> anyhow::Result<Vec<u8>> {
5    todo!()
6}