mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-16 01:42:46 +08:00
25 lines
371 B
Rust
25 lines
371 B
Rust
pub mod shared;
|
|
|
|
pub mod abbr;
|
|
pub mod bg;
|
|
pub mod block;
|
|
pub mod builtin;
|
|
pub mod command;
|
|
pub mod contains;
|
|
pub mod echo;
|
|
pub mod emit;
|
|
pub mod exit;
|
|
pub mod math;
|
|
pub mod printf;
|
|
pub mod pwd;
|
|
pub mod random;
|
|
pub mod realpath;
|
|
pub mod r#return;
|
|
pub mod set_color;
|
|
pub mod test;
|
|
pub mod r#type;
|
|
pub mod wait;
|
|
|
|
// Note these tests will NOT run with cfg(test).
|
|
mod tests;
|