arqen 0.4.0

Backend infrastructure for agent-ready applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod memory;
pub mod traits;

#[cfg(feature = "http-client")]
pub mod http;
#[cfg(feature = "thingd-native")]
pub mod native;

pub use memory::MemoryThingdBackend;
pub use traits::*;

#[cfg(feature = "http-client")]
pub use http::HttpThingdBackend;
#[cfg(feature = "thingd-native")]
pub use native::{NativeThingdEngine, NativeThingdStore};