[init] Created dioxus project

This commit is contained in:
2025-08-21 14:18:26 +02:00
commit ffbf5e6aa3
43 changed files with 6910 additions and 0 deletions

8
api/src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
//! This crate contains all shared fullstack server functions.
use dioxus::prelude::*;
/// Echo the user input on the server.
#[server(Echo)]
pub async fn echo(input: String) -> Result<String, ServerFnError> {
Ok(input)
}