diff options
Diffstat (limited to 'conf/main.go')
-rw-r--r-- | conf/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
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() } |