6 lines
102 B
Rust
6 lines
102 B
Rust
use actix_web::HttpResponse;
|
|
|
|
pub async fn ping() -> HttpResponse {
|
|
HttpResponse::Ok().finish()
|
|
}
|