aboutsummaryrefslogtreecommitdiff
path: root/gn/db
diff options
context:
space:
mode:
authorPjotr Prins2023-11-14 17:53:05 +0100
committerPjotr Prins2023-11-14 17:53:05 +0100
commit12e43794a12a94e45c25cadf5d167697c16c4f5f (patch)
treef761dab8235a7cff9a98f4d865316e14ac46cc13 /gn/db
parent0e29ab17e14d1d58905ae708ac48acb0e47cbd86 (diff)
downloadgn-guile-12e43794a12a94e45c25cadf5d167697c16c4f5f.tar.gz
Started on precompute script
Diffstat (limited to 'gn/db')
-rw-r--r--gn/db/mysql.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/gn/db/mysql.scm b/gn/db/mysql.scm
new file mode 100644
index 0000000..c84605d
--- /dev/null
+++ b/gn/db/mysql.scm
@@ -0,0 +1,15 @@
+(define-module (gn db mysql)
+ #:use-module (json)
+ #:use-module (ice-9 match)
+ #:use-module (ice-9 format)
+ #:use-module (ice-9 iconv)
+ #:use-module (ice-9 receive)
+ #:use-module (ice-9 string-fun)
+
+ #:export (
+ open-db
+ )
+)
+
+(define open-db
+ #t)