Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ronghua
/
cursor
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cursor
/
src
/
common
/
model
/
token.rs
ronghua
up
3c2af29
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
254 Bytes
use
serde::{Deserialize, Serialize};
#[derive(Deserialize, Serialize)]
pub
struct
TokenPayload
{
pub
sub:
String
,
pub
time:
String
,
pub
randomness:
String
,
pub
exp:
i64
,
pub
iss:
String
,
pub
scope:
String
,
pub
aud:
String
,
}