1
2
3
4
5
6
7
8
9
10
11
//! A general-use client for interacting with NPM registry APIs.

mod api;
mod client;
mod error;
mod notify;

pub use api::login;
pub use api::packument;
pub use client::{OroClient, OroClientBuilder};
pub use error::OroClientError;