Extract magic number defaults into named constants #15

Open
opened 2026-07-25 11:17:07 +00:00 by GKaszewski · 0 comments
Owner

Severity: Low

crates/bootstrap/src/main.rs has inline defaults:

  • unwrap_or(3000) for port
  • unwrap_or(24) for JWT expiry hours

These should be named constants (e.g., const DEFAULT_PORT: u16 = 3000) for self-documenting code.

**Severity: Low** `crates/bootstrap/src/main.rs` has inline defaults: - `unwrap_or(3000)` for port - `unwrap_or(24)` for JWT expiry hours These should be named constants (e.g., `const DEFAULT_PORT: u16 = 3000`) for self-documenting code.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: GKaszewski/k-notes#15