diff options
| author | 2025-10-13 05:51:01 +0300 | |
|---|---|---|
| committer | 2025-10-13 05:51:01 +0300 | |
| commit | f8db5c3e3c4bb426e76e10993b09debdb84b0b57 (patch) | |
| tree | b79763459752153b2385645a4fabfa25641909ee /src/main.lisp | |
| parent | Move do-call &co to a transport package (diff) | |
| download | ukkoclot-f8db5c3e3c4bb426e76e10993b09debdb84b0b57.tar.gz ukkoclot-f8db5c3e3c4bb426e76e10993b09debdb84b0b57.tar.xz ukkoclot-f8db5c3e3c4bb426e76e10993b09debdb84b0b57.zip | |
Move bot/impl to state
Diffstat (limited to 'src/main.lisp')
| -rw-r--r-- | src/main.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.lisp b/src/main.lisp index d418b78..522fb1b 100644 --- a/src/main.lisp +++ b/src/main.lisp | |||
| @@ -2,13 +2,13 @@ | |||
| 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> |
| 3 | (defpackage :ukkoclot/main | 3 | (defpackage :ukkoclot/main |
| 4 | (:nicknames :ukkoclot) | 4 | (:nicknames :ukkoclot) |
| 5 | (:use :c2cl :ukkoclot/bot :ukkoclot/config :ukkoclot/inline-bots :ukkoclot/tg) | 5 | (:use :c2cl :ukkoclot/config :ukkoclot/inline-bots :ukkoclot/tg :ukkoclot/bot/methods :ukkoclot/bot/advanced) |
| 6 | (:import-from :anaphora :acond :awhen :it) | 6 | (:import-from :anaphora :acond :awhen :it) |
| 7 | (:import-from :log) | 7 | (:import-from :log) |
| 8 | (:import-from :swank) | 8 | (:import-from :swank) |
| 9 | (:import-from :ukkoclot/bot :make-bot :bot-power-on) | ||
| 10 | (:import-from :ukkoclot/db :with-db) | 9 | (:import-from :ukkoclot/db :with-db) |
| 11 | (:import-from :ukkoclot/serializing :fixup-value) | 10 | (:import-from :ukkoclot/serializing :fixup-value) |
| 11 | (:import-from :ukkoclot/state :make-bot :bot-config :bot-power-on) | ||
| 12 | (:import-from :ukkoclot/strings :escape-xml :is-tg-whitespace-str :starts-with :starts-with-ignore-case) | 12 | (:import-from :ukkoclot/strings :escape-xml :is-tg-whitespace-str :starts-with :starts-with-ignore-case) |
| 13 | (:local-nicknames | 13 | (:local-nicknames |
| 14 | (:jzon :com.inuoe.jzon)) | 14 | (:jzon :com.inuoe.jzon)) |