mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-24 02:55:06 +08:00
12 lines
162 B
Rust
12 lines
162 B
Rust
|
#[macro_use]
|
||
|
extern crate envconfig_derive;
|
||
|
|
||
|
pub mod data;
|
||
|
pub mod error;
|
||
|
pub mod helpers;
|
||
|
pub mod models;
|
||
|
pub mod option;
|
||
|
pub mod routes;
|
||
|
|
||
|
use self::data::Data;
|