aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@openmailbox.org>2017-04-12 19:22:26 -0300
committerMatias Linares <matiaslina@openmailbox.org>2017-04-12 19:22:26 -0300
commit4658cf8b18ed5a2f1ef86bf156710f12252b296e (patch)
treed5b5465c7162b1a3460ddbb6e72a63290d16ef43 /README.md
parent846f9af582cd2d68331a334e2933d2b3c82ad099 (diff)
downloadperl6-matrix-client-4658cf8b18ed5a2f1ef86bf156710f12252b296e.tar.gz
Update README/examples
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 901b72e..137d50b 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,11 @@
A perl 6 library for [Matrix](https://matrix.org).
+## Status
+
+This project is in early development. A lot of methods returns a raw
+`HTTP::Response` and not something from this library.
+
## Examples
From the `examples` directory:
@@ -15,7 +20,7 @@ From the `examples` directory:
$client.login: @*ARGS[0], @*ARGS[1];
# Show all joined rooms
- say $client.rooms;
+ say $client.rooms(:sync);
# And finally logout.
$client.logout