smirrors 0.1.0

Automatic mirror list updater for Linux distributions
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Terminal user interface for SMirrors
//!
//! This module provides an interactive TUI for managing mirrors,
//! running tests, viewing history, and configuring the application.

pub mod app;
pub mod events;
pub mod ui;

pub use app::{App, TestingState, View};
pub use events::{Event, EventHandler, Key};