style: cargo fmt — fix all formatting for CI
Ran cargo fmt across entire codebase to pass CI's cargo fmt --check. No logic changes, only whitespace/formatting.
This commit is contained in:
parent
a5887ad2dc
commit
bc31e4389b
24 changed files with 613 additions and 242 deletions
|
|
@ -19,13 +19,13 @@ mod config;
|
|||
mod cron;
|
||||
mod gateway;
|
||||
mod heartbeat;
|
||||
mod integrations;
|
||||
mod memory;
|
||||
mod observability;
|
||||
mod onboard;
|
||||
mod providers;
|
||||
mod runtime;
|
||||
mod security;
|
||||
mod integrations;
|
||||
mod skills;
|
||||
mod tools;
|
||||
|
||||
|
|
@ -298,7 +298,11 @@ async fn main() -> Result<()> {
|
|||
] {
|
||||
println!(
|
||||
" {name:9} {}",
|
||||
if configured { "✅ configured" } else { "❌ not configured" }
|
||||
if configured {
|
||||
"✅ configured"
|
||||
} else {
|
||||
"❌ not configured"
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue