File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ to your service
16
16
4 . From the inputs and outputs for the function definitions, start writing the "messages"
17
17
section of the data types needed in your program.
18
18
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 `
21
21
* however, in this example we put it inside a ` go:generate ` , so you can run ` go generate . `
22
22
6 . Write your server ([ ./main.go] ( ./main.go ) ) and implement the ` ExampleServiceRPC ` interface type
23
23
that was created by the code generator, and located in the [ gen'd file] ( ./example.gen.go ) .
24
24
7 . Enjoy!
25
25
26
26
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 `
28
28
* check out the [ hello-webrpc] ( ../hello-webrpc ) for an example with a Webapp client talking to a webrpc backend
29
29
30
30
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module golang-basics
3
3
go 1.19
4
4
5
5
require (
6
- github.com/go-chi/chi v1.5.4
6
+ github.com/go-chi/chi/v5 v5.0.7
7
7
github.com/stretchr/testify v1.8.1
8
8
)
9
9
Original file line number Diff line number Diff line change 1
1
github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
2
2
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
3
3
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 =
6
6
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
7
7
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
8
8
github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
Original file line number Diff line number Diff line change 6
6
"log"
7
7
"net/http"
8
8
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"
11
11
)
12
12
13
13
func main () {
You can’t perform that action at this time.
0 commit comments