8 lines
188 B
Rust
8 lines
188 B
Rust
use serde::Deserialize;
|
|
#[derive(Deserialize)]
|
|
pub struct Config {
|
|
pub newsreader_database_url: String,
|
|
pub newsreader_tantivy_db_path: String,
|
|
pub slurp_cache_path: String,
|
|
}
|