summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2023-04-27 11:28:21 -0500
committersanine-a <sanine.not@pm.me>2023-04-27 11:28:21 -0500
commit8f8bed0e018d89f35f15b005b0109eb0ee3e9290 (patch)
tree638e521aa27578b2a9344576f597b8739ccb7f95 /db
parent51a40c981ab3a4902fb7dd661b2e4eddb1994c12 (diff)
add db module
Diffstat (limited to 'db')
-rw-r--r--db/db.go10
-rw-r--r--db/go.mod3
2 files changed, 13 insertions, 0 deletions
diff --git a/db/db.go b/db/db.go
new file mode 100644
index 0000000..2c59694
--- /dev/null
+++ b/db/db.go
@@ -0,0 +1,10 @@
+package db
+
+import (
+ "fmt"
+)
+
+
+func HelloWorld() {
+ fmt.Println("hello, world!")
+}
diff --git a/db/go.mod b/db/go.mod
new file mode 100644
index 0000000..51b2b67
--- /dev/null
+++ b/db/go.mod
@@ -0,0 +1,3 @@
+module sanine.net/git/phlox/db
+
+go 1.19