Parent [>]
1//! Tree browser page.
2//!
3//! Covers two routes: `/{repo}/commits/{sha}/tree` and
4//! `/{repo}/commits/{sha}/tree/{*path}`.  Renders a directory listing for the
5//! given tree object, with file entries linked to the raw handler and
6//! sub-directory entries linked to deeper tree pages.
7
8use axum::response::IntoResponse;
9
10pub async fn handler() -> impl IntoResponse {
11    "Tree handler"
12}