mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
16 lines
573 B
Rust
16 lines
573 B
Rust
//! Commonly used constants
|
|
|
|
/// Number of characters in a generated ID
|
|
pub const ID_LENGTH: usize = 20;
|
|
|
|
/// Characters to use for generating NanoID
|
|
pub(crate) const ALPHABETS: [char; 62] = [
|
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
|
|
'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B',
|
|
'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
|
|
'V', 'W', 'X', 'Y', 'Z',
|
|
];
|
|
|
|
/// TTL for token
|
|
pub const TOKEN_TTL: i64 = 900;
|