dioxus-dx-run-test/server/src/lib.rs
2025-03-19 11:32:32 -05:00

8 lines
No EOL
226 B
Rust

//! 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)
}