Skip to content

Commit 28eba05

Browse files
committed
change name of module
1 parent a29a5dd commit 28eba05

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/drop_oldest/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/Protocol-Lattice/GoEventBus"
8+
"github.com/Raezil/GoEventBus"
99
)
1010

1111
// OverrunPolicy=DropOldest silently discards events.

examples/fasthttp/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"time"
1010

11-
"github.com/Protocol-Lattice/GoEventBus"
11+
"github.com/Raezil/GoEventBus"
1212
"github.com/fasthttp/router"
1313
"github.com/valyala/fasthttp"
1414
)

examples/middleware/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/Protocol-Lattice/GoEventBus"
8+
"github.com/Raezil/GoEventBus"
99
)
1010

1111
// Example of a logging middleware that logs before and after handler execution.

examples/return_error/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/Protocol-Lattice/GoEventBus"
7+
"github.com/Raezil/GoEventBus"
88
)
99

1010
// Demonstrates OverrunPolicy=ReturnError (fail fast).

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/Protocol-Lattice/GoEventBus
1+
module github.com/Raezil/GoEventBus
22

33
go 1.23.0
44

0 commit comments

Comments
 (0)