summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf')
-rw-r--r--conf/go.mod8
-rw-r--r--conf/main.go4
2 files changed, 8 insertions, 4 deletions
diff --git a/conf/go.mod b/conf/go.mod
index 81b2db5..ff194cd 100644
--- a/conf/go.mod
+++ b/conf/go.mod
@@ -1,3 +1,7 @@
-module sanine.net/phlox/phloxconf
+module sanine.net/git/phlox/phloxconf
-go 1.20
+go 1.19
+
+replace sanine.net/git/phlox/db => ../db
+
+require sanine.net/git/phlox/db v0.0.0-00010101000000-000000000000
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()
}