diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-13 13:04:16 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-13 13:04:16 +0200 |
commit | 28f4a1be06e29bb3bbb3dbf4f9307308783450ab (patch) | |
tree | cf006f2d02e31b02e9636228475095cddfb4c470 /src/main.rs | |
parent | 50f16bb68fb6b28a1049ca25bb4273847c77ea93 (diff) |
Text-to-speach API for alert sound generation
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 33718c1..940bb5c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ #![doc = include_str!("../README.md")] +mod audio; mod config; mod db; mod errors; @@ -13,7 +14,7 @@ use crate::config::CONFIG; use async_graphql::{EmptySubscription, Schema}; use axum::{ http::{header, Method, Request}, - routing::post, + routing::{get, post}, Extension, Router, }; use tokio::net::TcpListener; @@ -45,6 +46,7 @@ async fn create_app() -> Router { .finish(); Router::new() + .route("/assets/sounds/:id", get(audio::show_file)) .route( "/graphql", post(graphql::routes::graphql_handler).layer(Extension(schema.clone())), |