about summary refs log tree commit diff
path: root/services/tazblog/src/Server.hs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-07-04T15·05+0100
committerVincent Ambo <tazjin@google.com>2019-07-04T15·05+0100
commit407a65b9ba7e0ffb89fc1a5322366906efec721c (patch)
treeb11c9c6373e86b78714410700c134508b37f11b5 /services/tazblog/src/Server.hs
parentd26cf3d806e33ed678878733e2c40bb09e9b15c9 (diff)
refactor(tazblog): Move required GHC extensions into source r/25
Necessary because Cabal is going away.
Diffstat (limited to 'services/tazblog/src/Server.hs')
-rw-r--r--services/tazblog/src/Server.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/services/tazblog/src/Server.hs b/services/tazblog/src/Server.hs
index c05e3afb19..fe26f95442 100644
--- a/services/tazblog/src/Server.hs
+++ b/services/tazblog/src/Server.hs
@@ -1,5 +1,4 @@
--- Server implementation based on Happstack
-
+{-# LANGUAGE RecordWildCards, ScopedTypeVariables, OverloadedStrings, FlexibleContexts #-}
 module Server where
 
 import           Control.Applicative    (optional)