Take the pain out of keeping all your calendars together

refactor: remove unused CSR main()

a.starrysky.fyi b7343015 3acdeb50

verified
Changed files
-8
src
-8
src/main.rs
··· 1 - 2 1 #[cfg(feature = "ssr")] 3 2 #[tokio::main] 4 3 async fn main() { ··· 30 29 .await 31 30 .unwrap(); 32 31 } 33 - 34 - #[cfg(not(feature = "ssr"))] 35 - pub fn main() { 36 - // no client-side main function 37 - // unless we want this to work with e.g., Trunk for pure client-side testing 38 - // see lib.rs for hydration function instead 39 - }