7 lines
241 B
Rust
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),
|
|
}
|
|
}
|