This also results in the conversion being performed when the ActionCallback is instantiated instead of when it is called, this should make it easier to catch errors.
15 lines
257 B
Rust
15 lines
257 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(iterator_try_collect)]
|
|
|
|
pub mod action_callback;
|
|
pub mod config;
|
|
pub mod device;
|
|
pub mod device_manager;
|
|
pub mod error;
|
|
pub mod event;
|
|
pub mod helpers;
|
|
pub mod lua;
|
|
pub mod messages;
|
|
pub mod mqtt;
|
|
pub mod schedule;
|