pandas-cli 1.0.0

PandasCLI is a command-line tool for quickly generating and managing Rust projects with PandasAPI structure. It helps you set up new projects, generate modules, and streamline your development workflow with ease.
1
2
3
4
5
6
7
8
9
10
11
12
use schemars::JsonSchema;
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, JsonSchema)]
pub struct Create{{ModuleName}}Dto {
{{params_struct}}
}

#[derive(Serialize, Deserialize, JsonSchema)]
pub struct Update{{ModuleName}}Dto {
{{params_struct_optional}}
}