autom8-cli 0.3.0

CLI automation tool for orchestrating Claude-powered development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! UI module for autom8.
//!
//! This module consolidates both GUI and TUI interfaces under a single namespace,
//! with shared data structures and logic in the `shared` submodule.
//!
//! # Submodules
//!
//! - [`gui`] - Native GUI using eframe/egui
//! - [`tui`] - Terminal UI using ratatui
//! - [`shared`] - Shared data types and loading logic

pub mod gui;
pub mod shared;
pub mod tui;