Skip to content

Commit

Permalink
Make Result and ReedlineError public
Browse files Browse the repository at this point in the history
Allows implementing custom `History` types
  • Loading branch information
Clément Nerma authored Nov 11, 2023
1 parent c853d71 commit 50b5880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ mod engine;
pub use engine::Reedline;

Check warning on line 239 in src/lib.rs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest, stable, bashisms)

Diff in /home/runner/work/reedline/reedline/src/lib.rs

Check warning on line 239 in src/lib.rs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest, stable, default)

Diff in /home/runner/work/reedline/reedline/src/lib.rs

Check warning on line 239 in src/lib.rs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest, stable, sqlite)

Diff in /home/runner/work/reedline/reedline/src/lib.rs

Check warning on line 239 in src/lib.rs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest, stable, basqlite)

Diff in /home/runner/work/reedline/reedline/src/lib.rs

Check warning on line 239 in src/lib.rs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest, stable, external_printer)

Diff in /home/runner/work/reedline/reedline/src/lib.rs

mod result;
pub(crate) use result::Result;
pub use result::{Result, ReedlineError};

mod history;
#[cfg(any(feature = "sqlite", feature = "sqlite-dynlib"))]
Expand Down

0 comments on commit 50b5880

Please sign in to comment.