aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--examples/http/main.go2
-rw-r--r--go.mod2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 7f7c963..13ff84b 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ import (
"context"
"net/http"
- "github.com/neonxp/rpc"
+ "github.com/neonxp/jsonrpc2"
)
func main() {
diff --git a/examples/http/main.go b/examples/http/main.go
index fdef509..730fc03 100644
--- a/examples/http/main.go
+++ b/examples/http/main.go
@@ -5,7 +5,7 @@ import (
"errors"
"net/http"
- "github.com/neonxp/rpc"
+ "github.com/neonxp/jsonrpc2"
)
func main() {
diff --git a/go.mod b/go.mod
index 2beacc4..caa2afb 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
-module github.com/neonxp/rpc
+module github.com/neonxp/jsonrpc2
go 1.18