about summary refs log tree commit diff
path: root/gn/db
diff options
context:
space:
mode:
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)