mirror of
https://github.com/perstarkse/minne.git
synced 2026-07-02 11:01:38 +02:00
chore: git-hooks rustfmt and clippy
This commit is contained in:
@@ -1,8 +1,4 @@
|
||||
use std::{
|
||||
collections::HashMap,
|
||||
fs,
|
||||
path::Path,
|
||||
};
|
||||
use std::{collections::HashMap, fs, path::Path};
|
||||
|
||||
use anyhow::{anyhow, Context, Result};
|
||||
use common::storage::{db::SurrealDbClient, types::text_chunk::TextChunk};
|
||||
@@ -72,9 +68,9 @@ pub async fn inspect_question(config: &Config) -> Result<()> {
|
||||
MissingChunks::None => println!(
|
||||
"All matching_chunk_ids exist in namespace '{ns}', database '{db_name}'"
|
||||
),
|
||||
MissingChunks::Missing(list) => println!(
|
||||
"Missing chunks in namespace '{ns}', database '{db_name}': {list:?}"
|
||||
),
|
||||
MissingChunks::Missing(list) => {
|
||||
println!("Missing chunks in namespace '{ns}', database '{db_name}': {list:?}");
|
||||
}
|
||||
},
|
||||
Err(err) => {
|
||||
println!(
|
||||
|
||||
Reference in New Issue
Block a user