2023-12-07 20:35:48 +00:00
|
|
|
module Matrix exposing (Vault)
|
2023-12-15 14:05:48 +00:00
|
|
|
|
|
|
|
{-|
|
|
|
|
|
|
|
|
|
|
|
|
# Matrix SDK
|
2023-12-07 20:35:48 +00:00
|
|
|
|
|
|
|
This first version forms a mere basis from which we will create iterative builds
|
|
|
|
that slowly improve the codebase.
|
|
|
|
|
2023-12-14 10:18:20 +00:00
|
|
|
It is generally quite unusual to regularly publish iterative beta versions on
|
|
|
|
the public registry, but it is also generally quite unusual to exclusively
|
|
|
|
support a monolithic public registry. (:
|
2023-12-14 10:21:49 +00:00
|
|
|
|
2023-12-15 14:05:48 +00:00
|
|
|
|
2023-12-14 10:21:49 +00:00
|
|
|
## Vault
|
|
|
|
|
|
|
|
@docs Vault
|
2023-12-15 14:05:48 +00:00
|
|
|
|
2023-12-07 20:35:48 +00:00
|
|
|
-}
|
|
|
|
|
2023-12-18 01:11:31 +00:00
|
|
|
import Types
|
|
|
|
|
2023-12-15 14:05:48 +00:00
|
|
|
|
2023-12-07 20:35:48 +00:00
|
|
|
{-| The Vault type stores all relevant information about the Matrix API.
|
|
|
|
|
|
|
|
It currently supports no functionality and it will just stay here - for fun.
|
2023-12-15 14:05:48 +00:00
|
|
|
|
2023-12-07 20:35:48 +00:00
|
|
|
-}
|
2023-12-18 01:11:31 +00:00
|
|
|
type alias Vault =
|
|
|
|
Types.Vault
|