9 lines
214 B
Rust
9 lines
214 B
Rust
use crate::{
|
|
commands::{empty_command_response, single_item_command_request},
|
|
types::ChannelName,
|
|
};
|
|
|
|
single_item_command_request!(Subscribe, "subscribe", ChannelName);
|
|
|
|
empty_command_response!(Subscribe);
|