[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Ludovic Courtès |
Date: |
Sat, 17 Aug 2019 13:09:25 -0400 (EDT) |
branch: master
commit 92bdf3cda0e366149aa2cb27cd44961f23ea95e6
Author: Ludovic Courtès <address@hidden>
Date: Sat Aug 17 16:53:07 2019 +0200
http: Import (ice-9 format).
* src/cuirass/http.scm: Add missing include of (ice-9 format).
---
src/cuirass/http.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm
index 02fc6f0..b69b6ce 100644
--- a/src/cuirass/http.scm
+++ b/src/cuirass/http.scm
@@ -1,7 +1,7 @@
;;;; http.scm -- HTTP API
;;; Copyright © 2016 Mathieu Lirzin <address@hidden>
;;; Copyright © 2017 Mathieu Othacehe <address@hidden>
-;;; Copyright © 2018 Ludovic Courtès <address@hidden>
+;;; Copyright © 2018, 2019 Ludovic Courtès <address@hidden>
;;; Copyright © 2018 Clément Lassieur <address@hidden>
;;; Copyright © 2018 Tatiana Sholokhova <address@hidden>
;;; Copyright © 2019 Ricardo Wurmus <address@hidden>
@@ -31,6 +31,7 @@
#:use-module (srfi srfi-26)
#:use-module (ice-9 binary-ports)
#:use-module (ice-9 match)
+ #:use-module (ice-9 format)
#:use-module (json)
#:use-module (web request)
#:use-module (web response)