mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-01-25 20:57:35 +01:00
15 lines
280 B
Rust
15 lines
280 B
Rust
pub mod document_formats;
|
|
pub mod error;
|
|
pub mod index_uid;
|
|
pub mod keys;
|
|
pub mod settings;
|
|
pub mod star_or;
|
|
pub mod tasks;
|
|
|
|
pub use milli;
|
|
pub use milli::{heed, Index};
|
|
use uuid::Uuid;
|
|
|
|
pub type Document = serde_json::Map<String, serde_json::Value>;
|
|
pub type InstanceUid = Uuid;
|