claps 0.2.0

CLIs written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::Deserialize;

mod create;
mod delete;
mod list;

#[derive(Debug, Deserialize)]
pub struct Record {
    pub content: String,
    pub id: String,
    pub name: String,
    pub proxied: bool,
}