diff options
| author | adambrangenberg <adabran06@gmail.com> | 2025-12-07 06:36:43 +0100 |
|---|---|---|
| committer | adambrangenberg <adabran06@gmail.com> | 2025-12-07 06:36:43 +0100 |
| commit | 2b48a574e8b9fed03a5c1969af4bb1e338f1be26 (patch) | |
| tree | f31c92f7788969b034838b8ec0ea7e187a746fc2 /src/Endpoints/APILib.hs | |
| parent | fb14daae9d3bc05a0d18f58875ef54e328081f19 (diff) | |
implemented section 1-3
Diffstat (limited to 'src/Endpoints/APILib.hs')
| -rw-r--r-- | src/Endpoints/APILib.hs | 11 |
1 files changed, 11 insertions, 0 deletions
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 |