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

pub use threads::Threads;

pub enum State {
    Threads(Threads),
}