servicepoint-cli/src/text.rs
2025-05-04 16:12:48 +02:00

7 lines
241 B
Rust

use crate::{cli::TextCommand, stream_stdin::stream_stdin, transport::Transport};
pub fn text(connection: &Transport, command: TextCommand) {
match command {
TextCommand::Stdin { slow } => stream_stdin(connection, slow),
}
}