1
2
3
4
5
6
7
8
9
10
11
12
// Copyright © 2023 Mini Functions library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Application JSON Web Token (JWT) claims functionality
//!
//! Provides access to JWT claims functions and types.

/// Re-exported module containing JWT claim related types.
pub use cclm::*;

/// Re-exported [`Claims`] struct from cclm for accessing JWT claims.
pub use cclm::Claims;