diff options
author | Boutade <thegoofist@protonmail.com> | 2019-09-25 21:12:14 -0500 |
---|---|---|
committer | Boutade <thegoofist@protonmail.com> | 2019-09-25 21:12:14 -0500 |
commit | cddffced5f2bc46b9a352ece7aa7618eca6b693e (patch) | |
tree | fb0a9d8bb39ac0919ed7bdb0da78a8df156306a0 /examples | |
parent | 94f31a5e1ff502fa12fb6a27c1f9b8b0854e3ad4 (diff) |
added initial server-directory utility class
Diffstat (limited to 'examples')
-rw-r--r-- | examples/shell-echo-bot.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shell-echo-bot.lisp b/examples/shell-echo-bot.lisp index 6cd9f1b..a73a174 100644 --- a/examples/shell-echo-bot.lisp +++ b/examples/shell-echo-bot.lisp @@ -11,7 +11,7 @@ ;; a script to login if necessary, and then start the bot -(unless (access-token *bot*) +(unless (granolin:logged-in-p *bot*) (princ "Log in to the server:") (terpri) (granolin:login *bot* @@ -19,4 +19,4 @@ (and (princ "password: ") (read-line)))) -(start *bot*) +(granolin:start *bot*) |