1
2
3
4
5
6
7
use crate::{Decode, Encode, Packet, PacketState};

#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
#[packet(state = PacketState::Status)]
pub struct QueryResponseS2c<'a> {
    pub json: &'a str,
}