Skip to main content

objectiveai_cli_sdk/output/notification/
published.rs

1use serde::{Deserialize, Serialize};
2
3/// Result of `<resource> publish`. The SHA identifies the resulting
4/// commit on the local filesystem repo.
5///
6/// Wire: `{"type":"notification","sha":"<commit-sha>"}`.
7#[derive(Serialize, Deserialize, Debug, Clone)]
8pub struct Published {
9    pub sha: String,
10}