Skip to content

Commit f7d2a8f

Browse files
committed
transfer repository
1 parent 11f6ccd commit f7d2a8f

12 files changed

Lines changed: 29 additions & 29 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
go_version: [1.25.x]
20+
go_version: [1.26.x]
2121
steps:
2222

2323
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Set up Go 1.x
2727
uses: actions/setup-go@v6

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Set up Go 1.x
4545
uses: actions/setup-go@v6

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# DNS Lookup & Domain WHOIS
22

3-
[![Go Report Card](https://goreportcard.com/badge/github.com/kataras/dns-lookup?style=for-the-badge)](https://goreportcard.com/report/github.com/kataras/dns-lookup)
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/hellenic-development/dns-lookup?style=for-the-badge)](https://goreportcard.com/report/github.com/hellenic-development/dns-lookup)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)
5-
[![Go Version](https://img.shields.io/github/go-mod/go-version/kataras/dns-lookup?style=for-the-badge)](https://github.com/kataras/dns-lookup)
6-
[![Release](https://img.shields.io/github/v/release/kataras/dns-lookup?style=for-the-badge)](https://github.com/kataras/dns-lookup/releases)
7-
[![Build Status](https://img.shields.io/github/actions/workflow/status/kataras/dns-lookup/ci.yml?branch=main&style=for-the-badge)](https://github.com/kataras/dns-lookup/actions/workflows/ci.yml)
5+
[![Go Version](https://img.shields.io/github/go-mod/go-version/hellenic-development/dns-lookup?style=for-the-badge)](https://github.com/hellenic-development/dns-lookup)
6+
[![Release](https://img.shields.io/github/v/release/hellenic-development/dns-lookup?style=for-the-badge)](https://github.com/hellenic-development/dns-lookup/releases)
7+
[![Build Status](https://img.shields.io/github/actions/workflow/status/hellenic-development/dns-lookup/ci.yml?branch=main&style=for-the-badge)](https://github.com/hellenic-development/dns-lookup/actions/workflows/ci.yml)
88

99
A fully-featured DNS Lookup and Domain WHOIS package written in Go.
1010

@@ -37,7 +37,7 @@ A fully-featured DNS Lookup and Domain WHOIS package written in Go.
3737
The only requirement is the [Go Programming Language](https://go.dev/dl/).
3838

3939
```bash
40-
go get github.com/kataras/dns-lookup@latest
40+
go get github.com/hellenic-development/dns-lookup@latest
4141
```
4242

4343
## Usage
@@ -54,7 +54,7 @@ import (
5454
"fmt"
5555
"log"
5656

57-
"github.com/kataras/dns-lookup/pkg/dns"
57+
"github.com/hellenic-development/dns-lookup/pkg/dns"
5858
)
5959

6060
func main() {
@@ -95,7 +95,7 @@ import (
9595
"fmt"
9696
"log"
9797

98-
"github.com/kataras/dns-lookup/pkg/whois"
98+
"github.com/hellenic-development/dns-lookup/pkg/whois"
9999
)
100100

101101
func main() {
@@ -127,7 +127,7 @@ import (
127127
"fmt"
128128
"log"
129129

130-
"github.com/kataras/dns-lookup/pkg/lookup"
130+
"github.com/hellenic-development/dns-lookup/pkg/lookup"
131131
)
132132

133133
func main() {
@@ -155,7 +155,7 @@ func main() {
155155
Install the CLI:
156156

157157
```bash
158-
go install github.com/kataras/dns-lookup/cmd/dns-lookup@latest
158+
go install github.com/hellenic-development/dns-lookup/cmd/dns-lookup@latest
159159
```
160160

161161
#### Usage Examples

_examples/dns/dns_example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"log"
1010
"time"
1111

12-
"github.com/kataras/dns-lookup/pkg/dns"
12+
"github.com/hellenic-development/dns-lookup/pkg/dns"
1313
)
1414

1515
func main() {

_examples/proxy/proxy_example.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"net"
88
"time"
99

10-
"github.com/kataras/dns-lookup/pkg/dns"
11-
"github.com/kataras/dns-lookup/pkg/whois"
10+
"github.com/hellenic-development/dns-lookup/pkg/dns"
11+
"github.com/hellenic-development/dns-lookup/pkg/whois"
1212
)
1313

1414
func main() {

_examples/unified/unified_example.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"log"
1111
"time"
1212

13-
"github.com/kataras/dns-lookup/pkg/dns"
14-
"github.com/kataras/dns-lookup/pkg/lookup"
13+
"github.com/hellenic-development/dns-lookup/pkg/dns"
14+
"github.com/hellenic-development/dns-lookup/pkg/lookup"
1515
)
1616

1717
func main() {

_examples/whois/whois_example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"log"
1010
"time"
1111

12-
"github.com/kataras/dns-lookup/pkg/whois"
12+
"github.com/hellenic-development/dns-lookup/pkg/whois"
1313
)
1414

1515
func main() {

cmd/dns-lookup/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"strings"
1010
"time"
1111

12-
"github.com/kataras/dns-lookup/pkg/dns"
13-
"github.com/kataras/dns-lookup/pkg/lookup"
14-
"github.com/kataras/dns-lookup/pkg/whois"
12+
"github.com/hellenic-development/dns-lookup/pkg/dns"
13+
"github.com/hellenic-development/dns-lookup/pkg/lookup"
14+
"github.com/hellenic-development/dns-lookup/pkg/whois"
1515
)
1616

1717
const (

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
module github.com/kataras/dns-lookup
1+
module github.com/hellenic-development/dns-lookup
22

3-
go 1.25
3+
go 1.26
44

5-
require golang.org/x/net v0.49.0
5+
require golang.org/x/net v0.51.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o=
2-
golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8=
1+
golang.org/x/net v0.51.0 h1:94R/GTO7mt3/4wIKpcR5gkGmRLOuE/2hNGeWq/GBIFo=
2+
golang.org/x/net v0.51.0/go.mod h1:aamm+2QF5ogm02fjy5Bb7CQ0WMt1/WVM7FtyaTLlA9Y=

0 commit comments

Comments
 (0)