Skip to content

Commit 00ec6f3

Browse files
committed
use the right repo
1 parent b4fc9c3 commit 00ec6f3

File tree

18 files changed

+41
-41
lines changed

18 files changed

+41
-41
lines changed

.deepsource.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ name = "go"
55
enabled = true
66

77
[analyzers.meta]
8-
import_path = "github.com/ipchama/dhammer"
8+
import_path = "github.com/nsone/dhammer"
99

.github/workflows/go_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
echo "$(dirname $GITHUB_WORKSPACE)/src" >> $GITHUB_PATH
2020
shell: bash
2121
- name: Get dependencies
22-
run: go get -v -u github.com/ipchama/dhammer
22+
run: go get -v -u github.com/nsone/dhammer
2323
- name: Switch to branch and test
2424
run: |
25-
cd $GOPATH/src/github.com/ipchama/dhammer \
25+
cd $GOPATH/src/github.com/nsone/dhammer \
2626
&& git checkout ${{github.event.pull_request.head.ref}} \
2727
&& go test ./...
2828
exit $?

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![DeepSource](https://static.deepsource.io/deepsource-badge-light.svg)](https://deepsource.io/gh/ipchama/dhammer/?ref=repository-badge)
1+
[![DeepSource](https://static.deepsource.io/deepsource-badge-light.svg)](https://deepsource.io/gh/nsone/dhammer/?ref=repository-badge)
22

33
![alt text](sledge.jpg "Dhammer")
44

@@ -21,7 +21,7 @@ Just download, compile, and run.
2121
### Installing
2222

2323
```
24-
go get -u github.com/ipchama/dhammer
24+
go get -u github.com/nsone/dhammer
2525
```
2626
### Building
2727
```

cmd/dhcpv4.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88

99
"github.com/google/gopacket"
1010
"github.com/google/gopacket/layers"
11-
"github.com/ipchama/dhammer/config"
12-
"github.com/ipchama/dhammer/hammer"
13-
"github.com/ipchama/dhammer/message"
14-
"github.com/ipchama/dhammer/socketeer"
11+
"github.com/nsone/dhammer/config"
12+
"github.com/nsone/dhammer/hammer"
13+
"github.com/nsone/dhammer/message"
14+
"github.com/nsone/dhammer/socketeer"
1515
"github.com/spf13/cobra"
1616
"github.com/vishvananda/netlink"
1717
"golang.org/x/sys/unix"

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cmd
22

33
import (
4-
"github.com/ipchama/dhammer/hammer"
4+
"github.com/nsone/dhammer/hammer"
55
"github.com/spf13/cobra"
66
)
77

generator/dhcpv4.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313

1414
"github.com/google/gopacket"
1515
"github.com/google/gopacket/layers"
16-
"github.com/ipchama/dhammer/config"
17-
"github.com/ipchama/dhammer/socketeer"
18-
"github.com/ipchama/dhammer/stats"
16+
"github.com/nsone/dhammer/config"
17+
"github.com/nsone/dhammer/socketeer"
18+
"github.com/nsone/dhammer/stats"
1919
)
2020

2121
var flags = []byte{byte(0x0), byte(0x0), byte(0x0), byte(0x0), byte(0x1), byte(0x1), byte(0x1), byte(0x1)}

generator/factory.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package generator
22

33
import (
44
"errors"
5-
"github.com/ipchama/dhammer/config"
6-
"github.com/ipchama/dhammer/socketeer"
7-
"github.com/ipchama/dhammer/stats"
5+
"github.com/nsone/dhammer/config"
6+
"github.com/nsone/dhammer/socketeer"
7+
"github.com/nsone/dhammer/stats"
88
)
99

1010
type Generator interface {

generator/factory_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package generator_test
22

33
import (
4-
"github.com/ipchama/dhammer/generator"
5-
"github.com/ipchama/dhammer/stats"
4+
"github.com/nsone/dhammer/generator"
5+
"github.com/nsone/dhammer/stats"
66
"testing"
77
)
88

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ipchama/dhammer
1+
module github.com/nsone/dhammer
22

33
go 1.14
44

hammer/hammer.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import (
1010
"sync"
1111
"time"
1212

13-
"github.com/ipchama/dhammer/config"
14-
"github.com/ipchama/dhammer/generator"
15-
"github.com/ipchama/dhammer/handler"
16-
"github.com/ipchama/dhammer/socketeer"
17-
"github.com/ipchama/dhammer/stats"
13+
"github.com/nsone/dhammer/config"
14+
"github.com/nsone/dhammer/generator"
15+
"github.com/nsone/dhammer/handler"
16+
"github.com/nsone/dhammer/socketeer"
17+
"github.com/nsone/dhammer/stats"
1818

1919
"github.com/corneldamian/httpway"
2020
"github.com/gorilla/handlers"

0 commit comments

Comments
 (0)