fix another build error
This commit is contained in:
parent
5bd4789387
commit
6906b553fb
1 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
{-# LANGUAGE CPP #-}
|
||||
{-# LANGUAGE DataKinds #-}
|
||||
{-# LANGUAGE DeriveGeneric #-}
|
||||
{-# LANGUAGE OverloadedStrings #-}
|
||||
|
@ -16,7 +17,11 @@ import Data.Aeson (FromJSON, ToJSON, decode', encode)
|
|||
import Data.ByteString (ByteString)
|
||||
import Data.ByteString.Conversion ()
|
||||
import Data.Char (toUpper)
|
||||
#if !MIN_VERSION_base(4,8,0)
|
||||
import Data.Monoid ((<>), mempty)
|
||||
#else
|
||||
import Data.Monoid ((<>))
|
||||
#endif
|
||||
import Data.Proxy (Proxy (Proxy))
|
||||
import Data.String (fromString)
|
||||
import Data.String.Conversions (cs)
|
||||
|
|
Loading…
Reference in a new issue