summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
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