summaryrefslogtreecommitdiffstats
path: root/src/api.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api.rs')
-rw-r--r--src/api.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/api.rs b/src/api.rs
index bab2043..57dc4b7 100644
--- a/src/api.rs
+++ b/src/api.rs
@@ -1,3 +1,5 @@
+use axum::{extract::State, routing::get, Json};
+
use crate::AppState;
pub mod services;
@@ -7,4 +9,9 @@ pub fn router() -> axum::Router<AppState> {
axum::Router::new()
.nest("/sse", sse::router())
.nest("/status", services::router())
+ .route("/list", get(names))
+}
+
+pub async fn names(State(state): State<AppState>) -> Json<Vec<String>> {
+ Json(state.names())
}