summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d9a9862..dc3961f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -13,11 +13,12 @@ pub use tmux::Tmux;
mod config;
mod history;
+mod hostfile;
mod ssh;
mod tmux;
pub trait SessionSource {
- type Error: std::error::Error;
+ type Error;
type Iter: IntoIterator<Item = Session>;