toss-api 0.1.5

A Vim-inspired TUI and CLI API client for exploring and testing endpoints
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)
}