variphx's picture
fix: refactor all constants into constants separate module
43270c7
raw
history blame contribute delete
192 Bytes
use utoipa::OpenApi;
use crate::constants::OPENAPI_TAG;
#[derive(OpenApi)]
#[openapi(
tags(
(name = OPENAPI_TAG, description = "AIC data server API")
)
)]
pub struct ApiDoc;