clickup-cli 0.5.3

CLI for the ClickUp API, optimized for AI agents
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct Workspace {
    pub id: String,
    pub name: String,
    pub members: Option<Vec<serde_json::Value>>,
}