Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
variphx
/
aic-server
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0d2ef2d
aic-server
/
src
/
docs
/
mod.rs
variphx
fix: refactor all constants into constants separate module
43270c7
6 months ago
raw
Copy download link
history
blame
Safe
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
;