diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2022-03-24 18:37:38 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2022-03-24 18:37:38 +0300 |
commit | d4708a3665e546eea57611b17441ad9b8c89e9a4 (patch) | |
tree | d85dd050b2eaf9f321b166ecfb020069de460e93 /README.md | |
parent | 4a8f9ef10ed6253901396bd6cd3554af05cf0d73 (diff) |
Changed package name to `go.neonxp.dev/jsonrpc2`
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -13,7 +13,7 @@ Go 1.18+ required 1. Create JSON-RPC/HTTP server: ```go - import "github.com/neonxp/jsonrpc2/http" + import "go.neonxp.dev/jsonrpc2/http" ... s := http.New() ``` @@ -48,8 +48,8 @@ import ( "context" "net/http" - httpRPC "github.com/neonxp/jsonrpc2/http" - "github.com/neonxp/jsonrpc2/rpc" + httpRPC "go.neonxp.dev/jsonrpc2/http" + "go.neonxp.dev/jsonrpc2/rpc" ) func main() { @@ -86,4 +86,4 @@ Alexander Kiryukhin <i@neonxp.dev> ## License -![GPL v3](https://www.gnu.org/graphics/gplv3-with-text-136x68.png)
\ No newline at end of file +![GPL v3](https://www.gnu.org/graphics/gplv3-with-text-136x68.png) |