mirror of
https://github.com/Xevion/dynamic-preauth.git
synced 2025-12-15 04:11:40 -06:00
Introduce AppError enum to replace panic-based error handling in executable loading and state management. Adds proper error propagation with descriptive error messages for missing executables, key patterns, and environment variables.
7 lines
98 B
Rust
7 lines
98 B
Rust
pub mod config;
|
|
pub mod errors;
|
|
pub mod handlers;
|
|
pub mod models;
|
|
pub mod railway;
|
|
pub mod state;
|