mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-27 08:41:00 +00:00
WIP: dump
This commit is contained in:
@ -55,10 +55,10 @@ impl ApiKeys {
|
||||
}
|
||||
|
||||
impl Data {
|
||||
pub async fn new(options: Opt) -> anyhow::Result<Data> {
|
||||
pub fn new(options: Opt) -> anyhow::Result<Data> {
|
||||
let path = options.db_path.clone();
|
||||
|
||||
let index_controller = IndexController::new(&path, &options).await?;
|
||||
let index_controller = IndexController::new(&path, &options)?;
|
||||
|
||||
let mut api_keys = ApiKeys {
|
||||
master: options.clone().master_key,
|
||||
|
Reference in New Issue
Block a user