summaryrefslogtreecommitdiff
path: root/src/main.lisp
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-13 05:51:01 +0300
committerGravatar Uko Kokņevičs2025-10-13 05:51:01 +0300
commitf8db5c3e3c4bb426e76e10993b09debdb84b0b57 (patch)
treeb79763459752153b2385645a4fabfa25641909ee /src/main.lisp
parentMove do-call &co to a transport package (diff)
downloadukkoclot-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.lisp4
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))