diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2017-04-12 19:22:26 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2017-04-12 19:22:26 -0300 |
commit | 4658cf8b18ed5a2f1ef86bf156710f12252b296e (patch) | |
tree | d5b5465c7162b1a3460ddbb6e72a63290d16ef43 /README.md | |
parent | 846f9af582cd2d68331a334e2933d2b3c82ad099 (diff) | |
download | perl6-matrix-client-4658cf8b18ed5a2f1ef86bf156710f12252b296e.tar.gz |
Update README/examples
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |