AIRA/src/constants.rs

7 lines
273 B
Rust
Raw Normal View History

2021-03-20 18:03:47 +01:00
pub const PORT: u16 = 7530;
pub const UI_PORT: u16 = 9510;
pub const APPLICATION_FOLDER: &str = "AIRA";
pub const DB_NAME: &str = "AIRA.db";
pub const HTTP_COOKIE_NAME: &str = "aira_auth";
2021-04-28 17:57:49 +02:00
pub const MSG_LOADING_COUNT: usize = 20;
pub const FILE_CHUNK_SIZE: usize = 1023996;