Skip to content

Commit

Permalink
add use_legacy_model_storage() function into Torii to temporary make …
Browse files Browse the repository at this point in the history
…clippy work
  • Loading branch information
remybar committed Mar 3, 2025
1 parent f6f6136 commit 88ad9c8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/torii/sqlite/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ impl ModelReader<Error> for ModelSQLReader {
async fn layout(&self) -> Result<Layout, Error> {
Ok(self.layout.clone())
}

async fn use_legacy_model_storage(&self) -> Result<bool, Error> {
// TODO: manage the new use_legacy_storage model function
Ok(false)
}
}

/// Creates a query that fetches all models and their nested data.
Expand Down

0 comments on commit 88ad9c8

Please sign in to comment.