1 2 3 4 5 6 7
pub mod postman; pub fn import_collection<P: AsRef<std::path::Path>>( path: P, ) -> anyhow::Result<crate::core::collection::Collection> { postman::import_postman(path) }