Instant message (#24)
textsender_api PR / Rustfmt (pull_request) Successful in 47s
textsender_api PR / Clippy (pull_request) Successful in 1m57s
textsender_api PR / Check (pull_request) Successful in 2m7s

Reviewed-on: phoenix/textsender_api#24
This commit was merged in pull request #24.
This commit is contained in:
2026-06-20 20:07:19 -04:00
parent 295140a216
commit 58fa5e0d26
9 changed files with 1057 additions and 32 deletions
+6
View File
@@ -183,6 +183,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::INSTANT_MESSAGE,
post(crate::caller::instant::endpoint::send_message).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}