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
use serde::{Serialize, Deserialize};
use schemars::JsonSchema;

#[derive(Serialize, Deserialize, JsonSchema, Clone)]
pub struct {{ModuleName}} {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
{{params_struct}}
}