aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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