wip
This commit is contained in:
3
src/v1/auth/mod.rs
Normal file
3
src/v1/auth/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub(super) use super::*;
|
||||
|
||||
pub mod signup;
|
||||
7
src/v1/auth/signup.rs
Normal file
7
src/v1/auth/signup.rs
Normal 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
7
src/v1/mod.rs
Normal 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;
|
||||
Reference in New Issue
Block a user