manta_server/server/common/
jwt_ops.rs

1//! JWT decode helpers (relocated to `manta_shared::common::jwt_ops`).
2//!
3//! This module is a thin re-export so server-side call sites that
4//! reach `crate::server::common::jwt_ops::*` continue to resolve
5//! without churn. New code should prefer the canonical path
6//! `manta_shared::common::jwt_ops`.
7
8pub use manta_shared::common::jwt_ops::*;