From b38b508366a80a2f1c163ae3623c79e883323201 Mon Sep 17 00:00:00 2001 From: Vika Date: Sun, 9 Jul 2023 21:06:55 +0300 Subject: webmentions/queue: move JobQueue trait into kittybox-util The trait itself seems basic enough that it could be reused elsewhere. Better to keep it in a separate crate. `-util` is a dumping ground for various things anyway. --- kittybox-rs/util/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'kittybox-rs/util/src/lib.rs') diff --git a/kittybox-rs/util/src/lib.rs b/kittybox-rs/util/src/lib.rs index 1c2f6f7..617ee97 100644 --- a/kittybox-rs/util/src/lib.rs +++ b/kittybox-rs/util/src/lib.rs @@ -41,6 +41,9 @@ pub mod auth { } } +/// A collection of traits for implementing a robust job queue. +pub mod queue; + #[cfg(feature = "fs")] /// Commonly-used operations with the file system in Kittybox's /// underlying storage mechanisms. -- cgit 1.4.1