From 8f8bed0e018d89f35f15b005b0109eb0ee3e9290 Mon Sep 17 00:00:00 2001 From: sanine-a Date: Thu, 27 Apr 2023 11:28:21 -0500 Subject: add db module --- conf/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conf/main.go') diff --git a/conf/main.go b/conf/main.go index 13bcf35..1015592 100644 --- a/conf/main.go +++ b/conf/main.go @@ -1,9 +1,9 @@ package main import ( - "fmt" + db "sanine.net/git/phlox/db" ) func main() { - fmt.Printf("hello world") + db.HelloWorld() } -- cgit v1.2.1