diff options
author | Pjotr Prins | 2023-11-14 17:53:05 +0100 |
---|---|---|
committer | Pjotr Prins | 2023-11-14 17:53:05 +0100 |
commit | 12e43794a12a94e45c25cadf5d167697c16c4f5f (patch) | |
tree | f761dab8235a7cff9a98f4d865316e14ac46cc13 /gn/db/mysql.scm | |
parent | 0e29ab17e14d1d58905ae708ac48acb0e47cbd86 (diff) | |
download | gn-guile-12e43794a12a94e45c25cadf5d167697c16c4f5f.tar.gz |
Started on precompute script
Diffstat (limited to 'gn/db/mysql.scm')
-rw-r--r-- | gn/db/mysql.scm | 15 |
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) |