From 24a55a63754dad17a3e65862f0089a6b80418321 Mon Sep 17 00:00:00 2001 From: Dmitry Zuikov Date: Wed, 17 Apr 2024 10:48:27 +0300 Subject: [PATCH] hbs2-git dashboard init --- hbs2-git/hbs2-git-dashboard/GitDashBoard.hs | 6 ++++++ hbs2-git/hbs2-git.cabal | 15 +++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 hbs2-git/hbs2-git-dashboard/GitDashBoard.hs diff --git a/hbs2-git/hbs2-git-dashboard/GitDashBoard.hs b/hbs2-git/hbs2-git-dashboard/GitDashBoard.hs new file mode 100644 index 00000000..6eefb9bb --- /dev/null +++ b/hbs2-git/hbs2-git-dashboard/GitDashBoard.hs @@ -0,0 +1,6 @@ +module Main where + + +main = do + pure () + diff --git a/hbs2-git/hbs2-git.cabal b/hbs2-git/hbs2-git.cabal index 63f1307b..f7e0ccf1 100644 --- a/hbs2-git/hbs2-git.cabal +++ b/hbs2-git/hbs2-git.cabal @@ -126,6 +126,21 @@ library hs-source-dirs: hbs2-git-client-lib +executable hbs2-git-dashboard + import: shared-properties + main-is: GitDashBoard.hs + -- other-modules: + -- other-extensions: + build-depends: + base, hbs2-peer, hbs2-git + , binary + , vector + , optparse-applicative + + hs-source-dirs: hbs2-git-dashboard + default-language: GHC2021 + + executable hbs2-git-subscribe import: shared-properties main-is: Main.hs