pbcli 2.9.0

pbcli is a command line client which allows to upload and download pastes from privatebin directly from the command line.
Documentation
pub mod api;
pub mod config;
pub mod crypto;
pub mod error;
pub mod opts;
pub mod privatebin;
pub mod util;

#[cfg(feature = "uniffi")]
mod uniffi_custom_types;

pub use api::API;
pub use error::{PasteError, PbResult};
pub use opts::Opts;
pub use privatebin::{DecryptedPaste, PasteFormat};
pub use util::check_filesize;

#[cfg(feature = "uniffi")]
uniffi::setup_scaffolding!();