vtx_protocol/
lib.rs

1pub const WIT_CONTENT: &str = include_str!("../wit/vtx.wit");
2
3pub fn get_wit_path() -> std::path::PathBuf {
4    std::path::Path::new(env!("CARGO_MANIFEST_DIR"))
5        .join("wit")
6        .join("vtx.wit")
7}