authz-sdk-rust 0.2.2

sdk that client's authentication and authorization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod e;
mod sign;
pub mod token;

pub use e::Error;
pub use sign::{query, request, signature, Signature};
pub type Result<T, E = Error> = core::result::Result<T, E>;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}