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

module Endpoints.APILib (API) where

import Servant
import Endpoints.WellKnownClientEndpoint
import Endpoints.WellKnownSupportEndpoint
import Endpoints.VersionsEndpoint

type API = WellKnownClientAPI :<|> WellKnownSupportAPI :<|> VersionsAPI