diff options
author | Boutade <thegoofist@protonmail.com> | 2019-09-25 10:25:22 -0500 |
---|---|---|
committer | Boutade <thegoofist@protonmail.com> | 2019-09-25 10:25:22 -0500 |
commit | 53b2725935447b3a57e0c3381155f5a0fbf395f8 (patch) | |
tree | f3b32bc23974bbf3c2a76aa4f9b29a094f954b66 /examples | |
parent | 6618943207bfad3947e0029637e5fe71d7cbd3d8 (diff) |
added basic logging example
Diffstat (limited to 'examples')
-rw-r--r-- | examples/shell-echo-bot.lisp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/shell-echo-bot.lisp b/examples/shell-echo-bot.lisp new file mode 100644 index 0000000..f7bca56 --- /dev/null +++ b/examples/shell-echo-bot.lisp @@ -0,0 +1,10 @@ + +(defclass shell-echo-bot (granolin:client granolin::message-log) ()) + +(defvar *bot* (make-instance 'shell-echo-bot + :homeserver "https://matrix.hrlo.world" + :output *standard-output*)) + + + + |