aboutsummaryrefslogtreecommitdiff
path: root/src/Endpoints/APILib.hs
blob: 1db3f472b55337f139cc37da0aaf5753c2e7957e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE DataKinds #-}

module Endpoints.APILib (API) where

import Servant

import Endpoints.WellKnownEndpoint
import Endpoints.VersionsEndpoint
import Endpoints.LoginEndpoint
import Endpoints.ProfileEndpoint

----------------------------------------------------------------------------------------------------
type API =    WellKnownAPI
         :<|> VersionsAPI
         :<|> LoginAPI
         :<|> ProfileAPI