From f3dabe7a06b3c358769d0e212217e54001c670fc Mon Sep 17 00:00:00 2001 From: Dmitry Date: Tue, 3 Jan 2023 23:51:09 +0300 Subject: [PATCH] new db file rename --- .gitignore | 1 + app/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ec4a484..ebe5bca 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ json.zip /exp /.vscode test*.bin +db.dat diff --git a/app/src/main.rs b/app/src/main.rs index af7f4eb..60969c3 100644 --- a/app/src/main.rs +++ b/app/src/main.rs @@ -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)]