1 2 3 4 5 6 7 8 9 10 11
//! /plugins full-screen modal. pub(crate) mod state; pub(crate) mod draw; pub(crate) mod input; pub(crate) mod actions; pub(crate) mod progress; pub(crate) use state::PluginsModalState; pub(crate) use draw::render; pub(crate) use input::{handle_event, InputOutcome};