From 58a0e3b18e107bdf29e35216bae792556d9cc397 Mon Sep 17 00:00:00 2001 From: Dennis Frieberg Date: Fri, 4 Sep 2020 18:49:22 +0200 Subject: [PATCH] Started working on websocketApp logic --- app/WebSocketApp.hs | 5 +++++ tickLeisteServer.cabal | 1 + 2 files changed, 6 insertions(+) create mode 100644 app/WebSocketApp.hs diff --git a/app/WebSocketApp.hs b/app/WebSocketApp.hs new file mode 100644 index 0000000..cfbce16 --- /dev/null +++ b/app/WebSocketApp.hs @@ -0,0 +1,5 @@ +module WebSocketApp () where + + +import Data.Aeson.TickLeiste +import diff --git a/tickLeisteServer.cabal b/tickLeisteServer.cabal index 5650593..c6ff64a 100644 --- a/tickLeisteServer.cabal +++ b/tickLeisteServer.cabal @@ -42,6 +42,7 @@ library executable tickLeisteServer main-is: Main.hs other-modules: + WebSocketApp Paths_tickLeisteServer hs-source-dirs: app