new db file rename

This commit is contained in:
Dmitry Belyaev 2023-01-03 23:51:09 +03:00
parent e521e39f5e
commit f3dabe7a06
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ json.zip
/exp
/.vscode
test*.bin
db.dat

View File

@ -18,7 +18,7 @@ use crate::questions::{Question, QuestionsConverter};
use crate::source::ReadSourceQuestionsBatches;
const ZIP_FILENAME: &str = "json.zip";
const NEW_DB_FILENAME: &str = "test.bin";
const NEW_DB_FILENAME: &str = "db.dat";
const DB_DIR: &str = "db";
#[derive(Subcommand, Debug)]