Parent [>]
1//! Archive download handler.
2//!
3//! Covers the route `/{repo}/archive/{format}/{*ref}`.  Streams the
4//! repository archive in the requested format (`tar.gz`, `tar.xz`, or
5//! `zip`) for the given ref.
6
7use axum::response::IntoResponse;
8
9pub async fn handler() -> impl IntoResponse {
10    "Archive handler"
11}