diff options
Diffstat (limited to 'module/web')
-rw-r--r-- | module/web/http.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/module/web/http.scm b/module/web/http.scm index b65fa91c1..9270cd0f9 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -1,6 +1,6 @@ ;;; HTTP messages -;; Copyright (C) 2010-2017, 2023 Free Software Foundation, Inc. +;; Copyright (C) 2010-2017, 2023, 2025 Free Software Foundation, Inc. ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -30,13 +30,14 @@ ;;; Code: (define-module (web http) - #:use-module (srfi srfi-9) - #:use-module (srfi srfi-19) - #:use-module (ice-9 rdelim) - #:use-module (ice-9 match) #:use-module (ice-9 binary-ports) - #:use-module (ice-9 textual-ports) #:use-module (ice-9 exceptions) + #:use-module (ice-9 match) + #:use-module (ice-9 object-properties) + #:use-module (ice-9 rdelim) + #:use-module (ice-9 textual-ports) + #:use-module (srfi srfi-19) + #:use-module (srfi srfi-9) #:use-module (web uri) #:export (string->header header->string |