diff options
| author | adambrangenberg <adabran06@gmail.com> | 2025-12-24 03:40:10 +0100 |
|---|---|---|
| committer | adambrangenberg <adabran06@gmail.com> | 2025-12-24 03:40:10 +0100 |
| commit | a0886694f73fc382d78da79ab8bfb27475757bab (patch) | |
| tree | 652ba9b603a1acaf4dfca188f7bb2c29c6bccfd0 /src/Endpoints/APILib.hs | |
| parent | 2b48a574e8b9fed03a5c1969af4bb1e338f1be26 (diff) | |
Implemented basic auth, refactor
Diffstat (limited to 'src/Endpoints/APILib.hs')
| -rw-r--r-- | src/Endpoints/APILib.hs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Endpoints/APILib.hs b/src/Endpoints/APILib.hs index 9c89492..1db3f47 100644 --- a/src/Endpoints/APILib.hs +++ b/src/Endpoints/APILib.hs @@ -4,8 +4,14 @@ module Endpoints.APILib (API) where import Servant -import Endpoints.WellKnownClientEndpoint -import Endpoints.WellKnownSupportEndpoint + +import Endpoints.WellKnownEndpoint import Endpoints.VersionsEndpoint +import Endpoints.LoginEndpoint +import Endpoints.ProfileEndpoint -type API = WellKnownClientAPI :<|> WellKnownSupportAPI :<|> VersionsAPI +---------------------------------------------------------------------------------------------------- +type API = WellKnownAPI + :<|> VersionsAPI + :<|> LoginAPI + :<|> ProfileAPI |