This commit is contained in:
2024-12-11 01:13:14 -08:00
parent f28eb6c422
commit 863dccd4fd
10 changed files with 40 additions and 189 deletions

View File

@@ -6,7 +6,7 @@ use utoipa_axum::{router::OpenApiRouter, routes};
use utoipa_swagger_ui::SwaggerUi;
// tags
use v1::{auth::AUTH_TAG, body_parts::BODY_PARTS_TAG, exercises::EXERCISES_TAG};
use v1::{auth::AUTH_TAG, exercises::EXERCISES_TAG, muscles::MUSCLES_TAG};
mod v1;
mod structs;
@@ -28,7 +28,7 @@ pub(crate) use utoipa::ToSchema;
tags(
(name = AUTH_TAG, description = "Authentication API endpoints"),
(name = EXERCISES_TAG, description = "Exercise API endpoints"),
(name = BODY_PARTS_TAG, description = "Body part API endpoints"),
(name = MUSCLES_TAG, description = "Muscle API endpoints"),
// (name = CUSTOMER_TAG, description = "Customer API endpoints"),
// (name = ORDER_TAG, description = "Order API endpoints")
),