nipaw_core 1.9.5

一个git平台的api封装库,core实现
Documentation
1
2
3
4
5
6
7
8
mod client;
pub mod error;

pub use client::{Client, Commit, Issue, Org, Release, Repo, User};
pub use error::Error;
pub mod option;
pub mod types;
pub type Result<T> = std::result::Result<T, Error>;