bmux_cli 0.0.1-alpha.1

Command-line interface for bmux terminal multiplexer
1
2
3
4
5
6
7
8
9
10
11
12
//! Prompt host registration and async submission.
//!
//! This module re-exports the prompt system from [`bmux_plugin::prompt`],
//! which provides the process-global host channel.  Plugin code and the
//! attach loop both use the same channel via `bmux_plugin`.

pub use bmux_plugin::prompt::{
    PromptEvent, PromptField, PromptFormField, PromptFormFieldKind, PromptFormSection,
    PromptFormValue, PromptHostRequest, PromptOption, PromptPolicy, PromptRequest, PromptResponse,
    PromptSubmitError, PromptValidation, PromptValue, PromptWidth, register_host, request,
    request_with_events, submit, submit_with_events,
};