hbs2-git-oracle: the beginning

This commit is contained in:
Dmitry Zuikov 2024-03-21 10:25:27 +03:00
parent 10181d1e34
commit 0cf82db731
3 changed files with 27 additions and 3 deletions

View File

@ -13,6 +13,7 @@ BINS := \
hbs2-keyman \
hbs2-fixer \
hbs2-git-subscribe \
hbs2-git-oracle \
git-remote-hbs2 \
git-hbs2 \
@ -52,8 +53,8 @@ test-raft:
> nix develop -c ghcid -c 'cabal repl' raft-algo -T RaftAlgo.Proto.devTest
README.md:
pandoc README.md -t gfm -s -o README1.md --table-of-contents
@mv README1.md README.md
@echo Remove old TOC before publishing!
> pandoc README.md -t gfm -s -o README1.md --table-of-contents
> @mv README1.md README.md
> @echo Remove old TOC before publishing!

View File

@ -0,0 +1,7 @@
module Main where
main :: IO ()
main = do
print "hbs2-git-oracle"

View File

@ -168,3 +168,19 @@ executable git-remote-hbs2
default-language: GHC2021
executable hbs2-git-oracle
import: shared-properties
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base, hbs2-git
, binary
, vector
, optparse-applicative
hs-source-dirs: hbs2-git-oracle/app
default-language: GHC2021