aboutsummaryrefslogtreecommitdiffstats
path: root/crates/api-core/src/health/apidoc.rs
blob: 45b8754dcedf8c9975d2259468f417455c6e8af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use utoipa::OpenApi;

use crate::Version;

#[derive(OpenApi)]
#[openapi(
    tags(
        (name = "sellershut", description = "API health check"),
    ),
    components(schemas(Version))
)]
pub struct ApiDocBase;