fix(handshake): make client struct data public

This commit is contained in:
Santiago Carmuega 2021-12-09 06:41:35 -03:00
parent 3d4a93441f
commit b0571455d5

View file

@ -141,9 +141,9 @@ pub enum Output {
#[derive(Debug)]
pub struct Client {
state: State,
output: Output,
version_table: VersionTable,
pub state: State,
pub output: Output,
pub version_table: VersionTable,
}
impl Client {