Handle CLI arguments as structured argument-parameter pairs

This commit is contained in:
Juno Takano 2025-12-14 15:08:55 -03:00
commit 2040854e82
7 changed files with 83 additions and 15 deletions

View file

@ -3,7 +3,9 @@ use axum::{
http::{Response, StatusCode, header, HeaderValue},
};
use crate::formats::{Format, populate_graph, serialize_graph};
use crate::{
formats::{Format, populate_graph, serialize_graph},
};
use crate::handlers;
pub async fn file(file_path: &str, content_type: &str) -> Response<Body> {