nipaw_core 1.9.7

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

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