commafeed_api 0.4.0

API client for commafeed server
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct SubscribeRequest {
    pub url: String,
    pub title: String,
    #[serde(rename = "categoryId")]
    pub category_id: Option<String>,
}