mirror of https://github.com/voidlizard/hbs2
hbs2-git-oracle: the beginning
This commit is contained in:
parent
9aafab745d
commit
901b29886e
1
Makefile
1
Makefile
|
@ -13,6 +13,7 @@ BINS := \
|
||||||
hbs2-keyman \
|
hbs2-keyman \
|
||||||
hbs2-fixer \
|
hbs2-fixer \
|
||||||
hbs2-git-subscribe \
|
hbs2-git-subscribe \
|
||||||
|
hbs2-git-oracle \
|
||||||
git-remote-hbs2 \
|
git-remote-hbs2 \
|
||||||
git-hbs2 \
|
git-hbs2 \
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
module Main where
|
||||||
|
|
||||||
|
main :: IO ()
|
||||||
|
main = do
|
||||||
|
print "hbs2-git-oracle"
|
||||||
|
|
||||||
|
|
|
@ -168,3 +168,19 @@ executable git-remote-hbs2
|
||||||
default-language: GHC2021
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue