Commit 8ce58b1d authored by Nicolas Lenz's avatar Nicolas Lenz ❄️
Browse files

Initialize project

parent 71f6ec48
Loading
Loading
Loading
Loading

package.yaml

0 → 100644
+31 −0
Original line number Diff line number Diff line
name:                pixelflut-client
version:             0.0.1
license:             Apache-2.0
git:                 "https://git.eisfunke.com/software/pixelflut-client"
author:              "Nicolas Lenz"
maintainer:          "nicolas@eisfunke.com"
copyright:           "2019 Nicolas Lenz"

extra-source-files:
- README.md

synopsis:            A client for the pixelflut protocol
category:            String
description:         Please see the README at <https://git.eisfunke.com/software/mock#readme>

dependencies:
- base
- text
- network

library:
  source-dirs: src

executables:
  pixelflut-client:
    main:                Main.hs
    source-dirs:         src
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N

src/Main.hs

0 → 100644
+5 −0
Original line number Diff line number Diff line
module Main where

main :: IO ()
main = do
    putStrLn "Hello World!"

stack.yaml

0 → 100644
+4 −0
Original line number Diff line number Diff line
resolver: lts-13.19

packages:
- .