iota registering / login process

This commit is contained in:
Alex Emmet 2026-01-13 22:59:16 +01:00
commit 0f536630d3
10 changed files with 307 additions and 383 deletions

View file

@ -1,4 +1,3 @@
mod auth;
mod calls;
mod data;
mod omega;
@ -15,12 +14,12 @@ use tokio_util::compat::TokioAsyncReadCompatExt;
use tungstenite::handshake::server::{Request, Response};
use crate::{
auth::crypto_helper::{load_public_key, load_secret_key},
calls::call_manager::garbage_collect_calls,
omega::omega_connection::OmegaConnection,
rho::{client_connection::ClientConnection, iota_connection::IotaConnection},
util::{
config_util::CONFIG,
crypto_helper::{load_public_key, load_secret_key},
logger::{PrintType, startup},
},
};