diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-10-11 14:17:33 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-10-11 14:17:33 +0200 |
commit | 35bf45a81da20d782a8a654703eca14543e25def (patch) | |
tree | 920d7d884786b900ba194d1433bc010b94f4e46c /cli/cli.cabal | |
parent | 939cc3e115f5f7b06b09b46c4519502027e25d0d (diff) |
add CLI draft
Diffstat (limited to 'cli/cli.cabal')
-rw-r--r-- | cli/cli.cabal | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cli/cli.cabal b/cli/cli.cabal new file mode 100644 index 0000000..5065732 --- /dev/null +++ b/cli/cli.cabal @@ -0,0 +1,24 @@ +cabal-version: 3.4 +name: cli +version: 0.1.0.0 +license: BSD-2-Clause +license-file: LICENSE +maintainer: aforemny@posteo.de +author: Alexander Foremny +build-type: Simple +extra-doc-files: CHANGELOG.md + +executable cli + main-is: Main.hs + hs-source-dirs: app + other-modules: API.Collection + default-language: GHC2021 + ghc-options: -Wall + build-depends: + aeson, + base, + bytestring, + filepath, + optparse-applicative, + sh, + text |