clickup-cli 0.9.1

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

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