Skip to content

Commit

Permalink
feat: rename go-jsonrpc to jsonrpc.go
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmcgee committed Sep 30, 2022
1 parent 39bc726 commit 03062a3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# go-jsonrpc
# jsonrpc.go

![Build](https://github.com/41north/go-jsonrpc/actions/workflows/ci.yml/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/41north/go-jsonrpc/badge.svg?branch=main)](https://coveralls.io/github/41north/go-jsonrpc?branch=main)
![Build](https://github.com/41north/jsonrpc.go/actions/workflows/ci.yml/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/41north/jsonrpc.go/badge.svg?branch=main)](https://coveralls.io/github/41north/jsonrpc.go?branch=main)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Status: _EXPERIMENTAL_
Expand All @@ -10,26 +10,26 @@ TBD

## Documentation

[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/41north/go-jsonrpc)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/41north/jsonrpc.go)

Full `go doc` style documentation for the project can be viewed online without
installing this package by using the excellent GoDoc site here:
http://godoc.org/github.com/41north/go-jsonrpc
http://godoc.org/github.com/41north/jsonrpc.go

You can also view the documentation locally once the package is installed with
the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
http://localhost:6060/pkg/github.com/41north/go-jsonrpc
http://localhost:6060/pkg/github.com/41north/jsonrpc.go

## Installation

```bash
$ go get -u github.com/41north/go-jsonrpc
$ go get -u github.com/41north/jsonrpc.go
```

Add this import line to the file you're working in:

```Go
import "github.com/41north/go-jsonrpc"
import "github.com/41north/jsonrpc.go"
```

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/41north/go-jsonrpc
module github.com/41north/jsonrpc.go

go 1.19

Expand Down

0 comments on commit 03062a3

Please sign in to comment.