use crate::command::{Command, CommandCode};
use crate::response::Response;
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct CloseSessionCommand {}
impl Command for CloseSessionCommand {
type ResponseType = CloseSessionResponse;
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct CloseSessionResponse {}
impl Response for CloseSessionResponse {
const COMMAND_CODE: CommandCode = CommandCode::CloseSession;
}