trigger-rs/crates/dispatch-server/src/ping.rs
2025-02-21 14:03:43 +03:00

5 lines
100 B
Rust

pub const ROUTE_ENDPOINT: &str = "/ping";
pub async fn process() -> &'static str {
"success"
}