bijux-cli 0.3.5

Command-line runtime for automation, plugin-driven tools, and interactive workflows with structured output.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]
//! Process adapter primitives.

use std::io::{self, Write};

/// Write a payload to stdout.
pub fn write_stdout(payload: &str) {
    let _ = write!(io::stdout(), "{payload}");
}

/// Write a payload to stderr.
pub fn write_stderr(payload: &str) {
    let _ = write!(io::stderr(), "{payload}");
}