feat: show basic json screen

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-01 23:26:25 +02:00
parent 1885a200c4
commit d7e21a256d
6 changed files with 141 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
serde_json.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = [
@@ -25,7 +26,6 @@ sqlx = { version = "0.7.3", features = [
] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
serde_json = "1.0.116"
bus = "2.4.1"
dirs = "5.0.1"

View File

@@ -111,7 +111,7 @@ pub async fn execute() -> anyhow::Result<()> {
println!("cleared lock file");
}
None => {
hyperlog_tui::execute(&state).await?;
hyperlog_tui::execute(state).await?;
}
}