AIRA/src/constants.rs

8 lines
320 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;
2021-06-18 20:02:48 +02:00
pub const FILE_CHUNK_SIZE: usize = 1_023_996;
pub const MAX_RECV_SIZE: usize = 16_383_996;