elm-format
parent
a8d81baa80
commit
037e598b36
|
@ -1,5 +1,9 @@
|
||||||
module Matrix exposing (Vault)
|
module Matrix exposing (Vault)
|
||||||
{-| # Matrix SDK
|
|
||||||
|
{-|
|
||||||
|
|
||||||
|
|
||||||
|
# Matrix SDK
|
||||||
|
|
||||||
This first version forms a mere basis from which we will create iterative builds
|
This first version forms a mere basis from which we will create iterative builds
|
||||||
that slowly improve the codebase.
|
that slowly improve the codebase.
|
||||||
|
@ -8,13 +12,18 @@ It is generally quite unusual to regularly publish iterative beta versions on
|
||||||
the public registry, but it is also generally quite unusual to exclusively
|
the public registry, but it is also generally quite unusual to exclusively
|
||||||
support a monolithic public registry. (:
|
support a monolithic public registry. (:
|
||||||
|
|
||||||
|
|
||||||
## Vault
|
## Vault
|
||||||
|
|
||||||
@docs Vault
|
@docs Vault
|
||||||
|
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
{-| The Vault type stores all relevant information about the Matrix API.
|
{-| The Vault type stores all relevant information about the Matrix API.
|
||||||
|
|
||||||
It currently supports no functionality and it will just stay here - for fun.
|
It currently supports no functionality and it will just stay here - for fun.
|
||||||
|
|
||||||
-}
|
-}
|
||||||
type Vault = Vault
|
type Vault
|
||||||
|
= Vault
|
||||||
|
|
Loading…
Reference in New Issue