tl_cli/cli/commands/
mod.rs

1//! Subcommand implementations.
2
3/// Chat mode command handler.
4pub mod chat;
5
6/// Configure command handler.
7pub mod configure;
8
9/// Provider management command handler.
10pub mod providers;
11
12/// Style management command handler.
13pub mod styles;
14
15/// Translation command handler.
16pub mod translate;