This commit is contained in:
Mael G. 2020-12-13 14:26:55 -04:00
parent 36ce33e8f1
commit 3061efffb1
4 changed files with 6 additions and 6 deletions

View File

@ -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.

View File

@ -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"
)

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/outout14/lighthouse
module github.com/outout14/sacrebleu-dns
go 1.15

View File

@ -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"
)