useclap::Clap;useserde::Serialize;pub(crate)constTEMPLATE_NAME:&str="article";pub(crate)constTEMPLATE:&str="{{> title }}";/// Create a new note
#[derive(Clap, Debug, Serialize)]pubstructNote{/// The note title
#[clap(short)]pub(crate)title: String,
}