diff options
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*)) + + + + |