diff options
Diffstat (limited to 'src/state/mod.rs')
| -rw-r--r-- | src/state/mod.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/state/mod.rs b/src/state/mod.rs new file mode 100644 index 0000000..fc563e7 --- /dev/null +++ b/src/state/mod.rs @@ -0,0 +1,7 @@ +mod threads; + +pub use threads::Threads; + +pub enum State<'d, 'q> { + Threads(Threads<'d, 'q>), +} |
