diff options
Diffstat (limited to 'src/transport.lisp')
| -rw-r--r-- | src/transport.lisp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport.lisp b/src/transport.lisp index d47db4d..bb451c1 100644 --- a/src/transport.lisp +++ b/src/transport.lisp | |||
| @@ -1,17 +1,17 @@ | |||
| 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/transport | 3 | (defpackage :ukkoclot/src/transport |
| 4 | (:documentation "Package dealing with HTTP calls.") | 4 | (:documentation "Package dealing with HTTP calls.") |
| 5 | (:use :c2cl) | 5 | (:use :c2cl) |
| 6 | (:import-from :cl+ssl) | 6 | (:import-from :cl+ssl) |
| 7 | (:import-from :dex) | 7 | (:import-from :dex) |
| 8 | (:import-from :log) | 8 | (:import-from :log) |
| 9 | (:import-from :ukkoclot/serializing :fixup-args :parse-value) | 9 | (:import-from :ukkoclot/src/serializing :fixup-args :parse-value) |
| 10 | (:import-from :ukkoclot/state :bot-base-uri) | 10 | (:import-from :ukkoclot/src/state :bot-base-uri) |
| 11 | (:local-nicknames | 11 | (:local-nicknames |
| 12 | (:jzon :com.inuoe.jzon)) | 12 | (:jzon :com.inuoe.jzon)) |
| 13 | (:export :do-call)) | 13 | (:export :do-call)) |
| 14 | (in-package :ukkoclot/transport) | 14 | (in-package :ukkoclot/src/transport) |
| 15 | 15 | ||
| 16 | (defun req (uri method content) | 16 | (defun req (uri method content) |
| 17 | "Wrapper function for making a request." | 17 | "Wrapper function for making a request." |