gosh_repl/lib.rs
1// [[file:../gosh-shell.note::83dd8964][83dd8964]]
2#![deny(warnings)]
3#![deny(clippy::all)]
4// 83dd8964 ends here
5
6// [[file:../gosh-shell.note::88743546][88743546]]
7mod repl;
8// mod skim;
9// 88743546 ends here
10
11// [[file:../gosh-shell.note::67e2867b][67e2867b]]
12#[cfg(feature = "adhoc")]
13/// Docs for local mods
14pub mod docs {
15 macro_rules! export_doc {
16 ($l:ident) => {
17 pub mod $l {
18 pub use crate::$l::*;
19 }
20 };
21 }
22
23 export_doc!(repl);
24}
25// 67e2867b ends here
26
27// [[file:../gosh-shell.note::9cc4dec6][9cc4dec6]]
28pub use repl::{Actionable, Interpreter};
29// 9cc4dec6 ends here