summaryrefslogtreecommitdiff
path: root/src/client.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-11-22 15:06:07 +0200
committerLars Wirzenius <liw@liw.fi>2020-11-22 16:58:52 +0200
commit68e88efced88f05664ae9050f6888453cfe9cd30 (patch)
tree0484972dd085963e157de00f878d5f0e6d98a52a /src/client.rs
parent0158bd9c06acae4245897e5e04681b4a1637bee9 (diff)
downloadobnam2-68e88efced88f05664ae9050f6888453cfe9cd30.tar.gz
feat! use temporary files for SQLite databases
The user should not have to specify filenames for the databases, since they don't actually care where they're stored.
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client.rs b/src/client.rs
index d7dca36..658e3ed 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -14,7 +14,6 @@ use std::path::{Path, PathBuf};
#[derive(Debug, Deserialize, Clone)]
pub struct ClientConfig {
pub server_url: String,
- pub dbname: PathBuf,
pub root: PathBuf,
}