summaryrefslogtreecommitdiff
path: root/src/api/liveops.rs
blob: de77eb7d9043151b5bc6561b032aadf89c56239a (plain)
use actix_web::{get, web, HttpResponse, Scope};

#[get("ping")]
async fn ping() -> HttpResponse {
	HttpResponse::Ok().finish()
}

pub fn service() -> Scope {
	web::scope("liveops/").service(ping)
}