pmis 1.0.1

Companion CLI tool for paste.misterio.me
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod client;
pub mod operations;
pub mod schema;
pub mod session;

pub use client::Client;
pub use schema::Paste;
pub use session::Session;

pub use anyhow::Result;
pub use chrono::{DateTime, Utc};
pub use reqwest::Url;
pub use std::path::PathBuf;
pub use uuid::Uuid;