From 2b48a574e8b9fed03a5c1969af4bb1e338f1be26 Mon Sep 17 00:00:00 2001 From: adambrangenberg Date: Sun, 7 Dec 2025 06:36:43 +0100 Subject: implemented section 1-3 --- src/Endpoints/APILib.hs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Endpoints/APILib.hs (limited to 'src/Endpoints/APILib.hs') diff --git a/src/Endpoints/APILib.hs b/src/Endpoints/APILib.hs new file mode 100644 index 0000000..9c89492 --- /dev/null +++ b/src/Endpoints/APILib.hs @@ -0,0 +1,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 -- cgit v1.2.3