my-app 0.1.0

A web application providing user management and authentication
Documentation
1
2
3
4
5
6
7
use serde::{Serialize, Deserialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct Claims {
    pub sub: String,
    pub exp: usize,
}