summaryrefslogtreecommitdiff
path: root/src/main.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.lisp')
-rw-r--r--src/main.lisp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main.lisp b/src/main.lisp
index be17168..07a486b 100644
--- a/src/main.lisp
+++ b/src/main.lisp
@@ -1,22 +1,22 @@
1;; SPDX-License-Identifier: EUPL-1.2 1;; SPDX-License-Identifier: EUPL-1.2
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/src/main
4 (:nicknames :ukkoclot) 4 (:nicknames :ukkoclot)
5 (:use :c2cl :iterate :ukkoclot/inline-bots :ukkoclot/tg) 5 (:use :c2cl :iterate :ukkoclot/src/inline-bots :ukkoclot/src/tg)
6 (:import-from :alexandria :when-let) 6 (:import-from :alexandria :when-let)
7 (:import-from :com.dieggsy.f-string :enable-f-strings) 7 (:import-from :com.dieggsy.f-string :enable-f-strings)
8 (:import-from :conf) 8 (:import-from :conf)
9 (:import-from :log) 9 (:import-from :log)
10 (:import-from :serapeum :drop) 10 (:import-from :serapeum :drop)
11 (:import-from :str) 11 (:import-from :str)
12 (:import-from :ukkoclot/db :with-db) 12 (:import-from :ukkoclot/src/db :with-db)
13 (:import-from :ukkoclot/serializing :fixup-value) 13 (:import-from :ukkoclot/src/serializing :fixup-value)
14 (:import-from :ukkoclot/state :make-bot :bot-power-on) 14 (:import-from :ukkoclot/src/state :make-bot :bot-power-on)
15 (:import-from :ukkoclot/strings :escape-xml :is-tg-whitespace :is-tg-whitespace-str) 15 (:import-from :ukkoclot/src/strings :escape-xml :is-tg-whitespace :is-tg-whitespace-str)
16 (:local-nicknames 16 (:local-nicknames
17 (:jzon :com.inuoe.jzon)) 17 (:jzon :com.inuoe.jzon))
18 (:export :main)) 18 (:export :main))
19(in-package :ukkoclot/main) 19(in-package :ukkoclot/src/main)
20 20
21(enable-f-strings) 21(enable-f-strings)
22 22