mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 20:48:58 +01:00
9 lines
296 B
Rust
9 lines
296 B
Rust
use std::{fs, path::Path};
|
|
|
|
/// Copy the `instance-uid` contained in one db to another. Ignore all errors.
|
|
pub fn copy_user_id(src: &Path, dst: &Path) {
|
|
if let Ok(user_id) = fs::read_to_string(src.join("instance-uid")) {
|
|
let _ = fs::write(dst.join("instance-uid"), &user_id);
|
|
}
|
|
}
|