Files
empidee/src/commands/client_to_client/subscribe.rs
T
oysteikt 61e077e6e5
Build and test / check (push) Successful in 1m3s
Build and test / docs (push) Successful in 1m29s
Build and test / test (push) Successful in 1m49s
Build and test / build (push) Successful in 1m58s
commands: remove Command for bi-directional assoc types
Also add a `serialize` stub for responses
2026-07-24 16:32:34 +09:00

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);