16 lines
331 B
Rust
Raw Normal View History

2026-03-20 11:01:04 +01:00
//! GUI module for Geolog using egui
//!
//! Provides a graphical interface for:
//! - Browsing theories and instances
//! - Editing geolog code
//! - Visualizing chase execution
//! - Displaying relation graphs
pub mod app;
pub mod panels;
pub mod state;
pub mod visualizations;
pub use app::GeologApp;
pub use state::GuiState;