aboutsummaryrefslogtreecommitdiff
path: root/module/web/http
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 03:23:44 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 03:48:22 +0200
commit1976980d4a272fb7fc3694c734bfc6825edfc721 (patch)
tree8460db1176c64895e9968447588953fac85fe7d6 /module/web/http
parentRemove all inline use-modules. (diff)
downloadcalp-1976980d4a272fb7fc3694c734bfc6825edfc721.tar.gz
calp-1976980d4a272fb7fc3694c734bfc6825edfc721.tar.xz
Centralize (almost) all exports to :export in define-module.
Diffstat (limited to 'module/web/http')
-rw-r--r--module/web/http/make-routes.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/web/http/make-routes.scm b/module/web/http/make-routes.scm
index f5277ca5..3005200b 100644
--- a/module/web/http/make-routes.scm
+++ b/module/web/http/make-routes.scm
@@ -1,16 +1,17 @@
(define-module (web http make-routes)
- :export (make-routes)
:use-module (hnh util)
:use-module (ice-9 regex)
:use-module (ice-9 match)
:use-module (ice-9 curried-definitions)
:use-module (srfi srfi-1)
:use-module (srfi srfi-71)
+ :export (parse-endpoint-string
+ make-routes)
)
-(define-public (parse-endpoint-string str)
+(define (parse-endpoint-string str)
(let ((rx (make-regexp ":([^/.]+)(\\{([^}]+)\\})?([.])?")))
(let loop ((str str)
(string "")