feat: order inputs

This commit is contained in:
Nova
2023-05-02 21:58:53 -04:00
parent c369100d8a
commit f3dc632ffc
4 changed files with 84 additions and 72 deletions

View File

@@ -2,14 +2,11 @@ use super::client::Client;
use super::task;
use color_eyre::eyre::Result;
use std::path::PathBuf;
use std::sync::atomic::AtomicU64;
use std::sync::Arc;
use tokio::net::UnixListener;
use tokio::task::JoinHandle;
use tracing::error;
pub static FRAME: AtomicU64 = AtomicU64::new(0);
pub struct EventLoop {
join_handle: JoinHandle<()>,
}