This commit is contained in:
Tamo 2025-01-21 16:41:16 +01:00 committed by Louis Dureuil
parent 1eb9fe8562
commit 41eeffd88d
No known key found for this signature in database
7 changed files with 18 additions and 25 deletions

View file

@ -1,13 +1,13 @@
mod v1_12;
use std::path::Path;
use std::{fs, io};
use meili_snap::snapshot;
use meilisearch::Opt;
use crate::common::{default_settings, Server};
use std::path::Path;
use std::{fs, io};
fn copy_dir_all(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> io::Result<()> {
fs::create_dir_all(&dst)?;
for entry in fs::read_dir(src)? {