summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2023-10-04 17:37:32 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2023-10-04 17:37:32 +0200
commit6fa758a07de91bdf2ec2fafb5bd757f9c6a114f5 (patch)
tree32da4d58adf5f40dc2969f4a1ed785fe4582fb05
parentdc6f36f27554f4a8c88e0a9f8acf1fde288752b3 (diff)
as: *: add string/ISO->date to build context
-rw-r--r--src/as/atom.scm2
-rw-r--r--src/as/html.scm2
-rw-r--r--src/as/media-uploader.scm2
3 files changed, 6 insertions, 0 deletions
diff --git a/src/as/atom.scm b/src/as/atom.scm
index c1a8424..2f88b7e 100644
--- a/src/as/atom.scm
+++ b/src/as/atom.scm
@@ -1,5 +1,7 @@
(define-module (src as atom)
#:use-module ((src atom) #:prefix atom:)
+ #:use-module (src dates)
+ #:re-export (string/ISO->date)
#:export (main
post
person
diff --git a/src/as/html.scm b/src/as/html.scm
index 7ea3095..6a612dc 100644
--- a/src/as/html.scm
+++ b/src/as/html.scm
@@ -1,5 +1,7 @@
(define-module (src as html)
+ #:use-module (src dates)
#:use-module ((src html) #:prefix html:)
+ #:re-export (string/ISO->date)
#:export (main
post
person
diff --git a/src/as/media-uploader.scm b/src/as/media-uploader.scm
index 2991b52..3b21a8c 100644
--- a/src/as/media-uploader.scm
+++ b/src/as/media-uploader.scm
@@ -1,5 +1,7 @@
(define-module (src as media-uploader)
+ #:use-module (src dates)
#:use-module (src media-uploader)
+ #:re-export (string/ISO->date)
#:export (main
post
person