Adding code
Rust Build / Rustfmt (pull_request) Successful in 31s
Rust Build / Test Suite (pull_request) Successful in 1m10s
Rust Build / Clippy (pull_request) Successful in 1m42s
Rust Build / Check (pull_request) Successful in 2m33s
Rust Build / build (pull_request) Successful in 3m20s

This commit is contained in:
2026-06-13 15:51:56 -04:00
parent 567853134c
commit 39697a82e1
3 changed files with 36 additions and 23 deletions
+5 -5
View File
@@ -10,13 +10,13 @@ pub mod host {
pub mod init {
use std::time::Duration;
use axum::routing::{delete, get, patch, post};
use axum::routing::post;
use tower_http::timeout::TimeoutLayer;
use utoipa::OpenApi;
use crate::caller::contact as contact_caller;
use contact_caller::endpoint as contact_endpoints;
use contact_caller::response as contact_responses;
// use contact_caller::response as contact_responses;
mod cors {
pub async fn configure_cors() -> tower_http::cors::CorsLayer {
@@ -57,8 +57,8 @@ pub mod init {
_ => {
// Development (default): Allow localhost origins
cors.allow_origin(vec![
"http://localhost:8000".parse().unwrap(),
"http://127.0.0.1:8000".parse().unwrap(),
"http://localhost:9081".parse().unwrap(),
"http://127.0.0.1:9081".parse().unwrap(),
"http://localhost:4200".parse().unwrap(),
"http://127.0.0.1:4200".parse().unwrap(),
])
@@ -74,7 +74,7 @@ pub mod init {
tags(
(name = "textsender API", description = "Web API to manage texting")
)
)]
)]
struct ApiDoc;
pub async fn routes() -> axum::Router {