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