aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm-web/src/protocol.rs
blob: d9f3a8e46d4ec380338220417fbb43a1f5e6be71 (plain) (blame)
1
2
3
4
5
6
7
// it's possible we should just consider pulling the real protocol out into a
// crate or something? but ideally in a way that doesn't require pulling in
// tokio
#[derive(Debug, Clone, PartialEq, Eq, serde::Deserialize)]
pub enum Message {
    TerminalOutput { data: Vec<u8> },
}