{-# 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