5 lines
112 B
Rust
5 lines
112 B
Rust
// basic handler that responds with a static string
|
|
pub async fn root() -> &'static str {
|
|
"Hello, World!"
|
|
}
|