backbeat_server 0.5.0-beta

The reference backbeat server implementation.
1
2
3
4
5
6
use axum::http::StatusCode;
use axum::response::IntoResponse;

pub async fn get() -> impl IntoResponse {
	StatusCode::OK
}