Skip to content

Commit

Permalink
updated module path
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrik-haase committed Sep 5, 2024
1 parent a980f73 commit de1ac63
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion examples/dummy_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
"fmt"
"github.com/HenriBeck/goload"
"github.com/scayle/goload"
)

type DummyExecutor struct {
Expand Down
8 changes: 4 additions & 4 deletions examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package main

import (
"fmt"
"github.com/HenriBeck/goload"
goload_http "github.com/HenriBeck/goload/http"
"github.com/HenriBeck/goload/http/url_builder"
"github.com/HenriBeck/goload/pacer"
"github.com/scayle/goload"
goload_http "github.com/scayle/goload/http"
"github.com/scayle/goload/http/url_builder"
"github.com/scayle/goload/pacer"
"time"
)

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module github.com/HenriBeck/goload
module github.com/scayle/goload

go 1.21

require (
github.com/LENSHOOD/go-lock-free-ring-buffer v0.2.0
github.com/mroth/weightedrand/v2 v2.1.0
github.com/paulbellamy/ratecounter v0.2.0
github.com/rs/zerolog v1.33.0
golang.org/x/sync v0.3.0
google.golang.org/grpc v1.58.2
)
Expand All @@ -14,7 +15,6 @@ require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/rs/zerolog v1.33.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.13.0 // indirect
Expand Down
1 change: 0 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg=
golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
Expand Down
2 changes: 1 addition & 1 deletion http/http_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package goload_http
import (
"context"
"fmt"
"github.com/HenriBeck/goload"
"github.com/rs/zerolog/log"
"github.com/scayle/goload"
"io"
"net/http"
"net/url"
Expand Down
4 changes: 2 additions & 2 deletions http/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package goload_http

import (
"errors"
"github.com/HenriBeck/goload"
"github.com/HenriBeck/goload/http/url_builder"
"github.com/scayle/goload"
"github.com/scayle/goload/http/url_builder"
"io"
"net/http"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion http/url_builder/query_param.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package url_builder

import (
"github.com/HenriBeck/goload/utils/random"
"github.com/mroth/weightedrand/v2"
"github.com/rs/zerolog/log"
"github.com/scayle/goload/utils/random"
"net/url"
)

Expand Down
2 changes: 1 addition & 1 deletion http/url_builder/query_param_options.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package url_builder

import (
"github.com/HenriBeck/goload/utils/random"
"github.com/mroth/weightedrand/v2"
"github.com/rs/zerolog/log"
"github.com/scayle/goload/utils/random"
"strconv"
)

Expand Down
2 changes: 1 addition & 1 deletion http/url_builder/url_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package url_builder

import (
"fmt"
"github.com/HenriBeck/goload/utils/random"
"github.com/rs/zerolog/log"
"github.com/scayle/goload/utils/random"
"net/url"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions loadtest.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package goload
import (
"context"
"fmt"
"github.com/HenriBeck/goload/pacer"
ctx_utils "github.com/HenriBeck/goload/utils/ctx"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/scayle/goload/pacer"
ctx_utils "github.com/scayle/goload/utils/ctx"
"math"
"os"
"time"
Expand Down
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package goload

import (
"context"
"github.com/HenriBeck/goload/pacer"
"github.com/scayle/goload/pacer"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package goload

import (
"context"
"github.com/HenriBeck/goload/pacer"
"github.com/mroth/weightedrand/v2"
"github.com/rs/zerolog/log"
"github.com/scayle/goload/pacer"
"sync"
"time"
)
Expand Down

0 comments on commit de1ac63

Please sign in to comment.