viiper_client/lib.rs
1// This file is auto-generated by VIIPER codegen. DO NOT EDIT.
2
3pub mod error;
4pub mod wire;
5pub mod types;
6pub mod client;
7pub mod auth;
8
9#[cfg(feature = "async")]
10pub mod async_client;
11
12pub mod devices;
13
14pub use error::{ViiperError, ProblemJson};
15pub use wire::{DeviceInput, DeviceOutput};
16pub use types::*;
17pub use client::{ViiperClient, DeviceStream};
18
19#[cfg(feature = "async")]
20pub use async_client::{AsyncViiperClient, AsyncDeviceStream};