const_define.rs 301 B

1234567
  1. use std::time::Duration;
  2. pub const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(8);
  3. pub const PING_TIMEOUT: Duration = Duration::from_secs(60);
  4. pub const MAX_PAYLOAD_SIZE: usize = 262_144; // max payload size is 256k
  5. pub const IGNORE_ROUTES: [&str; 3] = ["/api/register", "/api/auth", "/ws"];