feat: connector tokenization flow (#750)

Co-authored-by: Arun Raj M <jarnura47@gmail.com>
This commit is contained in:
Sangamesh Kulkarni
2023-04-11 17:24:45 +05:30
committed by GitHub
parent ccf032732e
commit 29da1dfa50
70 changed files with 1441 additions and 230 deletions

View File

@ -10,3 +10,6 @@ pub(crate) const ALPHABETS: [char; 62] = [
'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;