1//! Apple Code Assistant - Library root
2//! CLI for code generation using Apple Foundation Models
34mod api;
5mod cli;
6pub mod config;
7mod conversation;
8mod error;
9mod types;
10mod ui;
11pub mod utils;
1213pub use error::{ApiError, ConfigError, IoError};
1415pub use cli::{Args, Handler};