返回 CodeWhale
mod.rs
根目录 / crates / tui / src / integrations / mod.rs
1 //! Third-party harness integrations owned by Codewhale.
2 //!
3 //! Every integration here is an adapter around another tool's *documented*
4 //! seams. Codewhale keeps ownership of provider/model selection, permissions,
5 //! credentials, and lifecycle authority; the integrated surface never becomes
6 //! a second scheduler or an authority bypass.
7
8 pub(crate) mod cli;
9 pub(crate) mod dsh;
10
10 lines RUST