diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-08-02 22:42:52 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-08-02 22:42:52 +0200 |
commit | f31a65bcd1642b3f042bd906674f4064cfc9362c (patch) | |
tree | b99f2180b38a2a3280f63dc9f521785fe3736578 /src/Main.hs | |
parent | d6647e7fc48c6436dc74c99b4614aa2bb557ea75 (diff) | |
download | trivstream-f31a65bcd1642b3f042bd906674f4064cfc9362c.tar trivstream-f31a65bcd1642b3f042bd906674f4064cfc9362c.tar.gz trivstream-f31a65bcd1642b3f042bd906674f4064cfc9362c.tar.bz2 trivstream-f31a65bcd1642b3f042bd906674f4064cfc9362c.tar.xz trivstream-f31a65bcd1642b3f042bd906674f4064cfc9362c.zip |
Inital work on option parsing
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Main.hs b/src/Main.hs index c2e4af9..70c3ad5 100644 --- a/src/Main.hs +++ b/src/Main.hs | |||
@@ -1,4 +1,22 @@ | |||
1 | module Main where | 1 | module Main where |
2 | 2 | ||
3 | |||
4 | import Trivstream.Types | ||
5 | import Trivstream.Options | ||
6 | |||
7 | |||
8 | import Options.Applicative | ||
9 | |||
10 | import Control.Lens | ||
11 | import Data.Default.Class | ||
12 | import Data.Serialize | ||
13 | import Data.Conduit.Cereal | ||
14 | |||
15 | import Sound.Pulse.Simple | ||
16 | import Sound.JACK | ||
17 | |||
18 | import Network.Socket | ||
19 | |||
20 | |||
3 | main :: IO () | 21 | main :: IO () |
4 | main = undefined | 22 | main = undefined |