diff options
| author | 2025-10-19 07:26:56 +0300 | |
|---|---|---|
| committer | 2025-10-19 07:26:56 +0300 | |
| commit | 3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6 (patch) | |
| tree | b222f24d5e35824a562aef4f4974de9f88cf9b59 /src/main.lisp | |
| parent | Make config be a global special variable (diff) | |
| download | ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.tar.gz ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.tar.xz ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.zip | |
Migrate packages from :ukkoclot to :ukkoclot/src
Diffstat (limited to 'src/main.lisp')
| -rw-r--r-- | src/main.lisp | 14 |
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 | ||