pointbreak 0.5.0

Durable terminal code review for changes humans and coding agents collaborate on together
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SourceRef {
    pub source_system: String,
    pub source_id: String,
}

impl SourceRef {
    pub fn new(source_system: impl Into<String>, source_id: impl Into<String>) -> Self {
        Self {
            source_system: source_system.into(),
            source_id: source_id.into(),
        }
    }
}