Add server module
Some checks failed
Push Workflows / rustfmt (push) Failing after 5s
Push Workflows / build (push) Failing after 4s
Push Workflows / test (push) Failing after 35s
Push Workflows / clippy (push) Failing after 34s
Push Workflows / docs (push) Failing after 41s
Push Workflows / nix-build (push) Has been cancelled

Only build for server target
This commit is contained in:
2026-06-15 17:42:50 -04:00
parent c147b480a9
commit 310ba73173
2 changed files with 4 additions and 0 deletions

View File

@@ -6,6 +6,9 @@ pub mod components;
pub mod pages; pub mod pages;
pub mod schema; pub mod schema;
#[cfg(feature = "server")]
pub mod server;
const TAILWIND_CSS: Asset = asset!("/assets/tailwind.css"); const TAILWIND_CSS: Asset = asset!("/assets/tailwind.css");
#[derive(Debug, Clone, Routable, PartialEq)] #[derive(Debug, Clone, Routable, PartialEq)]

1
src/server/mod.rs Normal file
View File

@@ -0,0 +1 @@