stax/lib.rs
1//! stax library interface
2//!
3//! This module exposes internal functionality for integration testing.
4//! The main binary is in main.rs.
5
6// Internal modules used by the CLI and tests
7mod cache;
8mod ci;
9pub mod cli;
10mod commands;
11mod config;
12mod engine;
13pub mod errors;
14mod forge;
15mod git;
16mod notifications;
17mod ops;
18mod progress;
19mod remote;
20mod tui;
21mod update;
22
23pub mod github;
24pub use forge::ForgeClient;