re_redap_browser/
context.rs

1
2
3
4
5
6
7
8
9
use std::sync::mpsc::Sender;

use crate::servers::Command;

/// Context structure for the redap browser.
pub struct Context<'a> {
    /// Sender to queue new commands.
    pub command_sender: &'a Sender<Command>,
}