Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Artyom Kazak committed Feb 13, 2019
1 parent 72fb0a0 commit e56aea9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion services/spar/src/Spar/Scim.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE LambdaCase #-}

-- TODO remove (orphans can be avoided by only implementing functions here, and gathering them
-- in the instance near the Spar type; alternatively, @hscim@ could be changed)
Expand Down Expand Up @@ -49,10 +50,15 @@ module Spar.Scim
) where

import Imports

import Control.Lens
import Control.Monad.Catch (try)
import Control.Monad.Except
import Data.String.Conversions (cs)
import Servant
import Servant.API.Generic
import Spar.App (Spar)
import Spar.App (Spar(..), Env)
import Spar.Error (SparError, sparToServantErr)
import Spar.Scim.Types
import Spar.Scim.Auth
import Spar.Scim.User
Expand Down

0 comments on commit e56aea9

Please sign in to comment.