Skip to main content

autom8/ui/
mod.rs

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