rust_filesearch/lib.rs
1// Library interface for fexplorer
2// Allows using fexplorer functionality as a library
3
4pub mod cli;
5pub mod config;
6pub mod errors;
7pub mod fs;
8pub mod models;
9pub mod output;
10pub mod util;
11
12#[cfg(feature = "tui")]
13pub mod tui;
14
15// px project switcher module
16pub mod px;
17
18pub use errors::{FsError, Result};
19pub use models::{Column, Entry, EntryKind, OutputFormat, SortKey, SortOrder};