Move point struct to shared primitives

This commit is contained in:
Santiago Carmuega 2021-11-28 17:36:39 -03:00
parent dfe8693fbf
commit ff8743023b
14 changed files with 53 additions and 104 deletions

View file

@ -133,9 +133,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 {