Skip to main content

matchmaker/
lib.rs

1#![allow(irrefutable_let_patterns)]
2
3// event
4pub mod action;
5pub use action::{Action, Actions};
6pub mod binds;
7pub mod config;
8mod config_types;
9pub mod event;
10
11pub mod message;
12pub mod render;
13pub mod ui;
14// picker
15pub mod nucleo;
16pub mod preview;
17mod selector;
18pub use selector::Selector;
19mod matchmaker;
20pub use matchmaker::*;
21pub mod tui;
22
23// misc
24mod aliases;
25pub mod errors;
26mod utils;
27pub use aliases::*;
28pub use errors::*;
29
30pub mod noninteractive;