aboutsummaryrefslogtreecommitdiff
path: root/gn/db/mysql.scm
blob: c84605d72978e6d4001e15a79aede4ed37694365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)