apply cargo & clippy fixes
Some checks failed
Run Check Script / check (pull_request) Failing after -1m14s

This commit is contained in:
Ian Letourneau
2025-08-04 21:52:45 -04:00
parent 74182bbc60
commit c64b59a4ec
67 changed files with 339 additions and 348 deletions

View File

@@ -1,3 +1,5 @@
use std::str::FromStr;
use harmony::{
data::Id,
inventory::Inventory,
@@ -9,7 +11,7 @@ use harmony::{
async fn main() {
let tenant = TenantScore {
config: TenantConfig {
id: Id::from_str("test-tenant-id"),
id: Id::from_str("test-tenant-id").unwrap(),
name: "testtenant".to_string(),
..Default::default()
},