This commit is contained in:
2024-11-02 18:27:02 -07:00
parent 0c635e32bd
commit b10323543f
6 changed files with 2182 additions and 2 deletions

3
src/v1/auth/mod.rs Normal file
View File

@@ -0,0 +1,3 @@
pub(super) use super::*;
pub mod signup;

7
src/v1/auth/signup.rs Normal file
View File

@@ -0,0 +1,7 @@
use super::*;
// /// Get customer
// ///
// /// Just return a static Customer object
// #[utoipa::path(get, path = "", responses((status = OK, body = Customer)), tag = super::CUSTOMER_TAG)]
// pub async fn signup() -> Json<Customer> {}

7
src/v1/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
pub(super) use axum::Json;
pub(super) use serde::Serialize;
pub(super) use utoipa::ToSchema;
pub(super) use utoipa_axum::router::OpenApiRouter;
pub(super) use utoipa_axum::routes;
pub mod auth;