cleaned tickLeiste-aeson Lib.hs and executable

This commit is contained in:
Dennis Frieberg 2020-09-22 12:16:11 +02:00
parent c41d8aa43e
commit b40c7faef0
4 changed files with 0 additions and 40 deletions

View file

@ -1,6 +0,0 @@
module Main where
import Lib
main :: IO ()
main = someFunc

View file

@ -29,17 +29,6 @@ dependencies:
library: library:
source-dirs: src source-dirs: src
executables:
tickLeiste-aeson-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- tickLeiste-aeson
tests: tests:
tickLeiste-aeson-test: tickLeiste-aeson-test:
main: Spec.hs main: Spec.hs

View file

@ -1,6 +0,0 @@
module Lib
( someFunc
) where
someFunc :: IO ()
someFunc = putStrLn "someFunc"

View file

@ -26,7 +26,6 @@ source-repository head
library library
exposed-modules: exposed-modules:
Data.Aeson.TickLeiste Data.Aeson.TickLeiste
Lib
other-modules: other-modules:
Paths_tickLeiste_aeson Paths_tickLeiste_aeson
hs-source-dirs: hs-source-dirs:
@ -39,22 +38,6 @@ library
, uuid , uuid
default-language: Haskell2010 default-language: Haskell2010
executable tickLeiste-aeson-exe
main-is: Main.hs
other-modules:
Paths_tickLeiste_aeson
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >=4.7 && <5
, text
, tickLeiste
, tickLeiste-aeson
, uuid
default-language: Haskell2010
test-suite tickLeiste-aeson-test test-suite tickLeiste-aeson-test
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
main-is: Spec.hs main-is: Spec.hs