malvin 0.2.4

Non-interactive research and coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::ObservabilityChannel;

#[allow(dead_code)]
pub(crate) const AUDIT_CHANNEL: ObservabilityChannel = ObservabilityChannel::Audit;
#[allow(dead_code)]
pub(crate) const NARRATIVE_CHANNEL: ObservabilityChannel = ObservabilityChannel::Narrative;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn channel_constants_are_distinct() {
        assert_ne!(AUDIT_CHANNEL, NARRATIVE_CHANNEL);
    }
}