mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 18:45:06 +08: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;
|