File size: 192 Bytes
8c9f41d
 
43270c7
8c9f41d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
use utoipa::OpenApi;

use crate::constants::OPENAPI_TAG;

#[derive(OpenApi)]
#[openapi(
    tags(
        (name = OPENAPI_TAG, description = "AIC data server API")
    )
)]
pub struct ApiDoc;