9 lines
137 B
Rust
9 lines
137 B
Rust
|
use calibre_db::calibre::Calibre;
|
||
|
|
||
|
use crate::config::Config;
|
||
|
|
||
|
pub struct AppState {
|
||
|
pub calibre: Calibre,
|
||
|
pub config: Config,
|
||
|
}
|