feat: add queue
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-11-24 21:24:50 +01:00
parent ea5adb2f93
commit 6647bb89be
4 changed files with 5 additions and 9 deletions

View File

@@ -3,12 +3,8 @@ use std::{ops::Deref, sync::Arc};
use crate::api::Discovery;
use super::{
config::AgentConfig,
discovery_client::DiscoveryClient,
grpc_client::GrpcClient,
handlers::scheduled_tasks::{self, ScheduledTasks},
queue::AgentQueue,
scheduler::Scheduler,
config::AgentConfig, discovery_client::DiscoveryClient, grpc_client::GrpcClient,
handlers::scheduled_tasks::ScheduledTasks, queue::AgentQueue, scheduler::Scheduler,
};
#[derive(Clone)]