framework_cqrs_lib/cqrs/models/api_key/
commands.rs

1
2
3
4
5
6
7
use serde::{Deserialize, Serialize};
use utoipa::ToSchema;

#[derive(Serialize, Deserialize, Clone, ToSchema)]
pub struct CreateApiKeyCommand {
    pub name: String,
}