From 6f2c9fb397fcfb22829c043a23372afe1f877499 Mon Sep 17 00:00:00 2001 From: Andrew Prokhorenkov Date: Sat, 25 Jan 2020 00:48:39 -0600 Subject: feat: add Haskell Stack support (#546) Add a Haskell Stack module when a stack.yaml file is detected --- src/modules/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/modules/mod.rs') 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> { "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), -- cgit v1.2.3