minor fix to template location for haskell

This commit is contained in:
wing328
2016-02-02 22:37:01 +08:00
parent f77a8672fc
commit 743a533c65
5 changed files with 16 additions and 11 deletions

View File

@@ -9,8 +9,8 @@ module Apis (
) where
import Api.UserApi (UserApi)
import Api.StoreApi (StoreApi)
import Api.PetApi (PetApi)
import Api.StoreApi (StoreApi)
import Data.Proxy
import Servant.API
@@ -18,7 +18,7 @@ import Test.QuickCheck
import qualified Data.Map as Map
import Utils
type API = UserApi :<|> StoreApi :<|> PetApi
type API = UserApi :<|> PetApi :<|> StoreApi
api :: Proxy API
api = Proxy