servicepoint-cli/src/text.rs
Vinzenz Schroeter 63a2fd00b9
All checks were successful
Rust / build (pull_request) Successful in 8m2s
update to the (unreleased) version of servicepoint
2025-05-01 20:42:15 +02:00

8 lines
241 B
Rust

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