2023-12-07 20:35:48 +00:00
|
|
|
module Matrix exposing (Vault)
|
|
|
|
{-| # Matrix SDK
|
|
|
|
|
|
|
|
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-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.
|
|
|
|
-}
|
|
|
|
type Vault = Vault
|