komodo_client 2.1.0

Client for the Komodo build and deployment system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use mogh_auth_client::openapi::MoghAuthApi;
use utoipa::OpenApi;

use crate::api::{
  execute::openapi::KomodoExecuteApi, read::openapi::KomodoReadApi,
  write::openapi::KomodoWriteApi,
};

#[derive(OpenApi)]
#[openapi(
  nest(
    (path = "/auth", api = MoghAuthApi),
    (path = "/read", api = KomodoReadApi),
    (path = "/execute", api = KomodoExecuteApi),
    (path = "/write", api = KomodoWriteApi),
  ),
)]
pub struct KomodoApi;