reminder-bot/src/consts.rs

7 lines
161 B
Rust
Raw Normal View History

pub const PREFIX: &str = "$";
pub const MAX_MESSAGE_LENGTH: usize = 2048;
2020-10-06 11:02:09 +00:00
pub const DAY: u64 = 86_400;
pub const HOUR: u64 = 3_600;
pub const MINUTE: u64 = 60;