hass_rs/
lib.rs

1//! # Async HomeAssistant Websocket Library
2//!
3//! Hass-rs is a HomeAssistant Websocket API client library.
4//!
5//! It is based on the [official API specifications](https://developers.home-assistant.io/docs/api/websocket).
6//!
7
8pub mod errors;
9pub use errors::{HassError, HassResult};
10
11pub mod types;
12pub use types::*;
13
14pub mod client;
15pub use client::HassClient;