Inital Commit (Errors, I need to move through devices)
Signed-off-by: Alex Emmet <111742636+Alex-Emmet@users.noreply.github.com>
This commit is contained in:
parent
f79bc82153
commit
044eeb67a6
23 changed files with 5687 additions and 7 deletions
23
src/main.rs
Normal file
23
src/main.rs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
mod auth;
|
||||
mod calls;
|
||||
mod data;
|
||||
mod omega;
|
||||
mod rho;
|
||||
mod util;
|
||||
|
||||
use crate::rho::client_connection;
|
||||
use crate::rho::iota_connection;
|
||||
use crate::util::config_util::Config;
|
||||
use crate::util::file_util;
|
||||
use tokio_websocket_server::socket::{WebSocketMessage, WebsocketServer};
|
||||
use tracing::info;
|
||||
use tracing_subscriber::fmt;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() {
|
||||
fmt::init();
|
||||
|
||||
loop {
|
||||
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue