8 lines
No EOL
226 B
Rust
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)
|
|
} |