postport 0.1.1

Publish your backend documentation from a Postman Collection as a static website with an interactive API
Documentation
1
2
3
4
5
6
use postport::parser;
fn main() {
    let collection = parser::get_collection();
    let (page, links) = parser::parse_collection(&collection);
    parser::write_to_disk(&page, &links, &collection);
}