Skip to content

Commit

Permalink
align tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Oct 5, 2024
1 parent a2dedf0 commit 8fd3e62
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
source: src/bgworker/skq.rs
expression: default_queues2
---
[
"default",
"mailer",
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
source: src/bgworker/skq.rs
expression: merged_queues
---
[
"default",
"mailer",
"foo",
"bar",
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
source: src/bgworker/skq.rs
expression: default_queues
---
[
"default",
"mailer",
]
6 changes: 4 additions & 2 deletions src/controller/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//! app::{AppContext, Hooks},
//! boot::{create_app, BootResult, StartMode},
//! controller::AppRoutes,
//! worker::Processor,
//! prelude::*,
//! task::Tasks,
//! environment::Environment,
//! Result,
Expand Down Expand Up @@ -56,8 +56,10 @@
//! //channels.register.ns("/", channels::application::on_connect);
//! channels
//! }
//! async fn connect_workers(_ctx: &AppContext, _queue: &Queue) -> Result<()> {
//! Ok(())
//! }
//!
//! fn connect_workers<'a>(p: &'a mut Processor, ctx: &'a AppContext) {}
//!
//! fn register_tasks(tasks: &mut Tasks) {}
//!
Expand Down

0 comments on commit 8fd3e62

Please sign in to comment.