aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-21 18:38:47 -0700
committerChristian Cunningham <cc@localhost>2022-08-21 18:38:47 -0700
commit3559291e555fffdbf2a890ca1db3cb790c2f6b9e (patch)
treeea43b9e29bf8d28d5525bc720ecb3e7db57fe319 /src/util.rs
parent60c867a49cd935e95b735edaace43606aca096e7 (diff)
Move queue structure to its own module
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs
new file mode 100644
index 0000000..34ae1f2
--- /dev/null
+++ b/src/util.rs
@@ -0,0 +1,5 @@
+//! # Utility crate
+//!
+//! Provides Queue structure
+mod fifo_queue;
+pub use fifo_queue::*;