diff options
| author | 2025-10-13 05:36:56 +0300 | |
|---|---|---|
| committer | 2025-10-13 05:36:56 +0300 | |
| commit | b4ab1bc4d1f4979a8a7cd79bceb942769188c07a (patch) | |
| tree | e434020caf09df6c91c5bec84f097bdbf91c997b /src/bot/method-macros.lisp | |
| parent | Move serializing stuff from bot/impl to a new file (diff) | |
| download | ukkoclot-b4ab1bc4d1f4979a8a7cd79bceb942769188c07a.tar.gz ukkoclot-b4ab1bc4d1f4979a8a7cd79bceb942769188c07a.tar.xz ukkoclot-b4ab1bc4d1f4979a8a7cd79bceb942769188c07a.zip | |
Move do-call &co to a transport package
Diffstat (limited to '')
| -rw-r--r-- | src/bot/method-macros.lisp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bot/method-macros.lisp b/src/bot/method-macros.lisp index 7b54dc9..b6f237f 100644 --- a/src/bot/method-macros.lisp +++ b/src/bot/method-macros.lisp | |||
| @@ -1,7 +1,9 @@ | |||
| 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/bot/method-macros | 3 | (defpackage :ukkoclot/bot/method-macros |
| 4 | (:use :c2cl :iterate :ukkoclot/bot/impl) | 4 | (:use :c2cl :iterate) |
| 5 | (:import-from :ukkoclot/bot/impl :bot) | ||
| 6 | (:import-from :ukkoclot/transport :do-call) | ||
| 5 | (:export :define-tg-method)) | 7 | (:export :define-tg-method)) |
| 6 | (in-package :ukkoclot/bot/method-macros) | 8 | (in-package :ukkoclot/bot/method-macros) |
| 7 | 9 | ||