//! 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 { Ok(input) }