this repo has no description

rustfmt (+ fmt ignore codegen)

Changed files
+4 -4
shared
src
web
src
handlers
templates
-1
shared/src/advent/day.rs
··· 169 Day::from(value.as_str()) 170 } 171 } 172 -
··· 169 Day::from(value.as_str()) 170 } 171 }
+1 -1
shared/src/assets.rs
··· 3 #[derive(Embed)] 4 #[folder = "challenges_markdown/"] 5 #[include = "*.md"] 6 - pub struct ChallengesMarkdown;
··· 3 #[derive(Embed)] 4 #[folder = "challenges_markdown/"] 5 #[include = "*.md"] 6 + pub struct ChallengesMarkdown;
+1
shared/src/lib.rs
··· 16 pub mod models; 17 pub mod web_helpers; 18 19 pub mod lexicons; 20 21 /// OAuthClientType to make it easier to access the OAuthClient in web requests
··· 16 pub mod models; 17 pub mod web_helpers; 18 19 + #[rustfmt::skip] 20 pub mod lexicons; 21 22 /// OAuthClientType to make it easier to access the OAuthClient in web requests
+1 -1
web/src/handlers/mod.rs
··· 1 - pub mod day; 2 pub mod auth;
··· 1 pub mod auth; 2 + pub mod day;
+1 -1
web/src/templates/mod.rs
··· 4 5 pub mod day; 6 pub mod error; 7 - pub mod login; 8 pub mod home; 9 10 pub struct HtmlTemplate<T>(pub T); 11
··· 4 5 pub mod day; 6 pub mod error; 7 pub mod home; 8 + pub mod login; 9 10 pub struct HtmlTemplate<T>(pub T); 11