genius-core-client 0.4.0

Genius Core Client Library. Written in Rust and using PyO3 for Python bindings.
Documentation
1
2
3
4
5
6
7
use jsonwebtoken::jwk::{self};
use lazy_static::lazy_static;
use std::sync::Mutex;

lazy_static! {
    pub static ref JWKS_KEY_CONTENTS: Mutex<Option<jwk::JwkSet>> = Mutex::new(None);
}