1
2
3
4
5
6
7
8
9
10
//! This module contains auth middleware for [`tonic`] services.

pub mod client;
pub mod server;

/// The metadata key used in the metadata of the gRPC request to store the token.
const AUTHORIZATION_KEY: &str = "authorization";

/// The prefix for the token in the metadata of the gRPC request.
const TOKEN_PREFIX: &str = "Bearer ";