summaryrefslogtreecommitdiff
path: root/cmd/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/main.go')
-rw-r--r--cmd/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/main.go b/cmd/main.go
index 6597749..540f9da 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -11,8 +11,8 @@ import (
"github.com/jackc/pgx/v5"
"sinanmohd.com/redq/api"
"sinanmohd.com/redq/db"
- "sinanmohd.com/redq/usage"
"sinanmohd.com/redq/dns"
+ "sinanmohd.com/redq/usage"
)
func main() {
@@ -29,7 +29,7 @@ func main() {
defer conn.Close(ctx)
queries := db.New(conn)
- d, err := dns.New()
+ d, err := dns.New(queries, ctx)
if err != nil {
os.Exit(0)
}