Skip to content

Commit 7fc199d

Browse files
committed
Upgrade golang-basic to chi@v5 and [email protected]
1 parent 7e1449e commit 7fc199d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

_examples/golang-basics/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ to your service
1616
4. From the inputs and outputs for the function definitions, start writing the "messages"
1717
section of the data types needed in your program.
1818
5. Run the code generator to build the server and client:
19-
* `webrpc-gen -schema=example.ridl -target=go -pkg=main -server -client -out=./example.gen.go`
20-
* or... * `webrpc-gen -schema=example.webrpc.json -target=go -pkg=main -server -client -out=./example.gen.go`
19+
* `webrpc-gen -schema=example.ridl -target=golang -pkg=main -server -client -out=./example.gen.go`
20+
* or... * `webrpc-gen -schema=example.webrpc.json -target=golang -pkg=main -server -client -out=./example.gen.go`
2121
* however, in this example we put it inside a `go:generate`, so you can run `go generate .`
2222
6. Write your server ([./main.go](./main.go)) and implement the `ExampleServiceRPC` interface type
2323
that was created by the code generator, and located in the [gen'd file](./example.gen.go).
2424
7. Enjoy!
2525

2626
Next steps, you can generate a Typescript client by running:
27-
* `webrpc-gen -schema=example.ridl -target=ts -pkg=example -client -out=./example-client.ts`
27+
* `webrpc-gen -schema=example.ridl -target=typescript -client -out=./example-client.ts`
2828
* check out the [hello-webrpc](../hello-webrpc) for an example with a Webapp client talking to a webrpc backend
2929

3030

_examples/golang-basics/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module golang-basics
33
go 1.19
44

55
require (
6-
github.com/go-chi/chi v1.5.4
6+
github.com/go-chi/chi/v5 v5.0.7
77
github.com/stretchr/testify v1.8.1
88
)
99

_examples/golang-basics/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
22
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
33
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4-
github.com/go-chi/chi v1.5.4 h1:QHdzF2szwjqVV4wmByUnTcsbIg7UGaQ0tPF2t5GcAIs=
5-
github.com/go-chi/chi v1.5.4/go.mod h1:uaf8YgoFazUOkPBG7fxPftUylNumIev9awIWOENIuEg=
4+
github.com/go-chi/chi/v5 v5.0.7 h1:rDTPXLDHGATaeHvVlLcR4Qe0zftYethFucbjVQ1PxU8=
5+
github.com/go-chi/chi/v5 v5.0.7/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
66
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
77
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
88
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

_examples/golang-basics/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"log"
77
"net/http"
88

9-
"github.com/go-chi/chi"
10-
"github.com/go-chi/chi/middleware"
9+
"github.com/go-chi/chi/v5"
10+
"github.com/go-chi/chi/v5/middleware"
1111
)
1212

1313
func main() {

0 commit comments

Comments
 (0)