diff --git a/README.md b/README.md index 1a42ea5..17355a8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# LightHouse +# Sacrebleu -LightHouse is a DNS authoritative nameserver made in Go with ``github.com/miekg/dns`` library. +Sacrebleu is a DNS authoritative nameserver made in Go with ``github.com/miekg/dns`` library. Records are stored in a MySQL Database and cached using REDIS. diff --git a/core/parseQuery.go b/core/parseQuery.go index 7a7558a..467a323 100644 --- a/core/parseQuery.go +++ b/core/parseQuery.go @@ -4,7 +4,7 @@ import ( "fmt" "github.com/miekg/dns" - "github.com/outout14/lighthouse/utils" + "github.com/outout14/sacrebleu-dns/utils" "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus" ) diff --git a/go.mod b/go.mod index c6b028f..9ab6219 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/outout14/lighthouse +module github.com/outout14/sacrebleu-dns go 1.15 diff --git a/main.go b/main.go index f502c00..bc70c69 100644 --- a/main.go +++ b/main.go @@ -6,8 +6,8 @@ import ( "github.com/go-redis/redis" "github.com/miekg/dns" - "github.com/outout14/lighthouse/core" - "github.com/outout14/lighthouse/utils" + "github.com/outout14/sacrebleu-dns/core" + "github.com/outout14/sacrebleu-dns/utils" "github.com/sirupsen/logrus" "gopkg.in/ini.v1" )