7 lines
76 B
Rust
7 lines
76 B
Rust
|
|
use poem::handler;
|
||
|
|
|
||
|
|
#[handler]
|
||
|
|
pub fn health() -> &'static str {
|
||
|
|
"ok"
|
||
|
|
}
|