arxivlens/lib.rs
1/// Application.
2pub mod app;
3
4/// Terminal events handler.
5pub mod event;
6
7/// Widget renderer.
8pub mod ui;
9
10/// Terminal user interface.
11pub mod tui;
12
13/// Event handler.
14pub mod handler;
15
16/// Handling config
17pub mod config;
18
19/// Arxiv tools
20pub mod arxiv;
21
22/// Search engine
23pub mod search;