cargo fmt
catapult PR / Rustfmt (pull_request) Successful in 49s
catapult PR / Check (pull_request) Successful in 1m32s
catapult PR / Clippy (pull_request) Failing after 2m18s

This commit is contained in:
2026-06-22 17:43:55 -04:00
parent aaa20c8752
commit dd9d452576
3 changed files with 117 additions and 124 deletions
+2 -4
View File
@@ -16,9 +16,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("App: {app:?}");
let auth = catapult::service::auth::Auth {
app: app.clone()
};
let auth = catapult::service::auth::Auth { app: app.clone() };
let token = match auth.get_token().await {
Ok(token) => token,
Err(err) => {
@@ -32,7 +30,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut svc = catapult::service::Service {
app: app.clone(),
token
token,
};
loop {