Create bindings for heartbeat

This commit is contained in:
Jackson Coxson
2025-03-24 22:49:52 -06:00
parent 715e777f72
commit f72d138359
3 changed files with 302 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
// Jackson Coxson
mod errors;
pub mod heartbeat;
pub mod installation_proxy;
pub mod logging;
mod pairing_file;
@@ -19,6 +20,7 @@ use tokio::runtime::{self, Runtime};
static RUNTIME: Lazy<Runtime> = Lazy::new(|| {
runtime::Builder::new_multi_thread()
.enable_io()
.enable_time()
.build()
.unwrap()
});