Add graph tab

This commit is contained in:
Joscha 2023-08-14 17:49:21 +02:00
parent 9caf664b10
commit b0eb94a02a
7 changed files with 56 additions and 1 deletions

View file

@ -22,6 +22,7 @@ use self::{
},
pages::{
commit::get_commit_by_hash,
graph::get_graph,
index::get_index,
queue::{get_queue, get_queue_delete, get_queue_inner},
run::get_run_by_id,
@ -42,6 +43,7 @@ pub async fn run(server: Server) -> somehow::Result<()> {
.typed_get(get_api_worker_bench_repo_by_hash_tree_tar_gz)
.typed_get(get_api_worker_repo_by_hash_tree_tar_gz)
.typed_get(get_commit_by_hash)
.typed_get(get_graph)
.typed_get(get_index)
.typed_get(get_queue)
.typed_get(get_queue_delete)