mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-04-13 18:11:40 +02:00
18 lines
291 B
Rust
18 lines
291 B
Rust
use std::path::{Path, PathBuf};
|
|
|
|
mod builder;
|
|
mod raw_builder;
|
|
|
|
pub use self::builder::UpdateBuilder;
|
|
pub use self::raw_builder::{RawUpdateBuilder, DocumentUpdate};
|
|
|
|
pub struct Update {
|
|
sst_file: PathBuf,
|
|
}
|
|
|
|
impl Update {
|
|
pub fn path(&self) -> &Path {
|
|
&self.sst_file
|
|
}
|
|
}
|