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

#[get("ping")]
async fn ping() -> &'static str {
	"pong"
}

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