agtrace-runtime 0.7.1

Internal runtime orchestration for the agtrace CLI. Not intended for direct use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod analyze;
pub mod doctor;
pub mod export;
pub mod index;
pub mod pack;
pub mod project;
pub mod session;

pub use analyze::{CorpusStats, StatsResult, collect_tool_stats, get_corpus_overview};
pub use doctor::{
    CheckResult, CheckStatus, DoctorService, InspectContentType, InspectLine, InspectResult,
};
pub use export::ExportService;
pub use index::{IndexProgress, IndexService};
pub use pack::{PackResult, PackService};
pub use project::{ProjectInfo, ProjectService};
pub use session::{ListSessionsRequest, SessionService};