You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
446 B
12 lines
446 B
pub mod token {
|
|
pub const TOKEN_COOKIE: &str = "token";
|
|
pub const TOKEN_EXPIRE_COOKIE: &str = "token_expire";
|
|
}
|
|
pub mod user {
|
|
pub const USER_ID_COOKIE: &str = "user_id";
|
|
pub const USER_NAME_COOKIE: &str = "user_name";
|
|
pub const USER_DISCRIMINATOR_COOKIE: &str = "user_discriminator";
|
|
pub const USER_AVATAR_COOKIE: &str = "user_avatar";
|
|
}
|
|
pub const LANG_COOKIE: &str = "lang";
|
|
pub const WELCOMED_COOKIE: &str = "welcomed"; |