summaryrefslogtreecommitdiffstats
path: root/src/modules/mod.rs
diff options
context:
space:
mode:
authorAndrew Prokhorenkov <andrew.prokhorenkov@gmail.com>2020-01-25 00:48:39 -0600
committerKevin Song <chipbuster@users.noreply.github.com>2020-01-25 00:48:39 -0600
commit6f2c9fb397fcfb22829c043a23372afe1f877499 (patch)
tree48b64728a098dcd95f2e694b0a62dd66467fc47b /src/modules/mod.rs
parentf4c095de92a09b7143766c4759ab0e60ff0befbb (diff)
feat: add Haskell Stack support (#546)
Add a Haskell Stack module when a stack.yaml file is detected
Diffstat (limited to 'src/modules/mod.rs')
-rw-r--r--src/modules/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/mod.rs b/src/modules/mod.rs
index 0d206a8d0..9c9f403c0 100644
--- a/src/modules/mod.rs
+++ b/src/modules/mod.rs
@@ -11,6 +11,7 @@ mod git_commit;
mod git_state;
mod git_status;
mod golang;
+mod haskell;
mod hg_branch;
mod hostname;
mod java;
@@ -55,6 +56,7 @@ pub fn handle<'a>(module: &str, context: &'a Context) -> Option<Module<'a>> {
"git_state" => git_state::module(context),
"git_status" => git_status::module(context),
"golang" => golang::module(context),
+ "haskell" => haskell::module(context),
"hg_branch" => hg_branch::module(context),
"hostname" => hostname::module(context),
"java" => java::module(context),