nettui 0.2.0

Unified TUI for Wi-Fi and Ethernet
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod components;
mod ethernet;
mod layout;
mod wifi;

use crate::app::App;
use ratatui::Frame;

pub fn render(app: &mut App, frame: &mut Frame) {
    layout::render(app, frame);
}