Parent [>]
1use axum::response::IntoResponse;
2
3pub async fn detail() -> impl IntoResponse {
4    "Commit detail"
5}
6
7pub async fn list() -> impl IntoResponse {
8    "Commit list"
9}