little-hesinde/rusty-library/src/app_state.rs

14 lines
312 B
Rust
Raw Normal View History

2024-05-10 12:25:18 +00:00
//! Data for global app state.
2024-05-02 16:10:29 +00:00
use calibre_db::calibre::Calibre;
use crate::config::Config;
2024-05-10 12:25:18 +00:00
/// Global application state, meant to be used in request handlers.
2024-05-02 16:10:29 +00:00
pub struct AppState {
2024-05-10 12:25:18 +00:00
/// Access calibre database.
2024-05-02 16:10:29 +00:00
pub calibre: Calibre,
2024-05-10 12:25:18 +00:00
/// Access application configuration.
2024-05-02 16:10:29 +00:00
pub config: Config,
}