8 lines
278 B
Rust
8 lines
278 B
Rust
//! This module aggregates and re-exports all cookie-related functionalities,
|
|
//! including JWT handling and validation middleware.
|
|
//!
|
|
//! It serves as a central point for managing session and authentication cookies
|
|
//! within the application.
|
|
pub mod jwt;
|
|
pub mod validation;
|