summaryrefslogtreecommitdiff
path: root/db/db.go
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/db.go
parent51a40c981ab3a4902fb7dd661b2e4eddb1994c12 (diff)
add db module
Diffstat (limited to 'db/db.go')
-rw-r--r--db/db.go10
1 files changed, 10 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!")
+}