diff options
Diffstat (limited to 'hs.cabal')
-rwxr-xr-x | hs.cabal | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -24,10 +24,8 @@ build-type: Simple extra-source-files: CHANGELOG.md library - exposed-modules: RestService - - -- Modules included in this library but not exported. - other-modules: BizExpr + exposed-modules: RestService, + BizExpr -- LANGUAGE extensions used by modules in this package. -- other-extensions: @@ -43,6 +41,21 @@ library hs-source-dirs: src default-language: Haskell2010 +executable repl + main-is: Repl.hs + + -- Modules included in this executable, other than Main. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: + base ^>=4.19.1.0, + hs + + hs-source-dirs: app + default-language: Haskell2010 + executable hs main-is: Main.hs |