aboutsummaryrefslogtreecommitdiffstats
path: root/src/state/mod.rs
blob: fc563e71c4d5387c586c90eb0d28f10a0ad1e1bd (plain) (blame)
1
2
3
4
5
6
7
mod threads;

pub use threads::Threads;

pub enum State<'d, 'q> {
    Threads(Threads<'d, 'q>),
}