Autoformat the whole thing

I've been putting this off because I don't want to have many small
formatting commits, and I don't have any kind of pre-commit hook to do
it for me. So here it is :v
This commit is contained in:
2025-06-01 13:28:06 -05:00
parent 442c8a97f8
commit e0c21fceaf
10 changed files with 64 additions and 69 deletions

View File

@@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize};
pub mod cli;
pub mod api;
pub mod cli;
pub mod structs;
#[derive(Debug, Deserialize, Serialize)]
@@ -26,4 +26,3 @@ impl From<reqwest::Error> for crate::Error {
}
type Result<T> = core::result::Result<T, Error>;