oy-cli 0.11.7

OpenCode launcher and deterministic MCP helpers for repository audit and review workflows
Documentation
1
2
3
4
5
6
7
8
9
10
//! Platform-specific helpers.
//!
//! Each platform module is gated behind its `#[cfg]` attribute
//! so callers use `cfg`-guarded dispatch at the call site.

#[cfg(windows)]
mod windows;

#[cfg(windows)]
pub(crate) use windows::restrict_to_owner;