objectiveai-sdk 2.0.6

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Emitted by the parent process during `--detach` once the child has
/// been spawned. Replaces the prior `println!("PID: {pid}")`.
///
/// Wire: `{"type":"notification","pid":12345}`.
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.api.Detached")]
pub struct Detached {
    pub pid: u32,
}