Compare commits
No commits in common. "f6054d5170a53a3adaedf67b8cb8aff7c4ad51f7" and "e0b804ea45c6e44170408b7c7d8a532415693b9b" have entirely different histories.
f6054d5170
...
e0b804ea45
|
@ -1,4 +1,2 @@
|
||||||
# Matrix SDK (beta version)
|
# elm-matrix-sdk-beta
|
||||||
|
Beta version of the Elm SDK
|
||||||
The Matrix SDK in Elm allows users to communicate with other instances using
|
|
||||||
the [Matrix](https://matrix.org) protocol.
|
|
||||||
|
|
13
elm.json
13
elm.json
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"type": "package",
|
|
||||||
"name": "noordstar/elm-matrix-sdk-beta",
|
|
||||||
"summary": "Matrix SDK for instant communication. Unstable beta version for testing only.",
|
|
||||||
"license": "EUPL-1.1",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"elm-version": "0.19.0 <= v < 0.20.0",
|
|
||||||
"exposed-modules": [ "Matrix" ],
|
|
||||||
"dependencies": {
|
|
||||||
"elm/core": "1.0.0 <= v < 2.0.0"
|
|
||||||
},
|
|
||||||
"test-dependencies": {}
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
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.
|
|
||||||
|
|
||||||
It is generally quite unusual to do this on
|
|
||||||
the public registry, but it is also generally quite unusual to only support a
|
|
||||||
monolithic public registry. (:
|
|
||||||
-}
|
|
||||||
|
|
||||||
{-| 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
|
|
Loading…
Reference in New Issue