From bed74c5c1a071f743d28694e5b561f3c93924c7b Mon Sep 17 00:00:00 2001 From: hylo Date: Fri, 30 Dec 2022 18:11:03 +0100 Subject: [PATCH] fix: export scm->toml --- toml.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toml.scm b/toml.scm index 4272185..df962d6 100644 --- a/toml.scm +++ b/toml.scm @@ -1,3 +1,4 @@ (define-module (toml) #:use-module (toml parser) - #:re-export (toml->scm)) + #:use-module (toml builder) + #:re-export (toml->scm scm->toml))