Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 467 Bytes

File metadata and controls

40 lines (31 loc) · 467 Bytes

examples

jzero examples

Install

go install github.com/jzero-io/jzero/cmd/jzero@latest
jzero check

api

jzero new simpleapi --frame api
cd simpleapi
jzero gen
go mod tidy
go run main.go server

gateway

jzero new simplegateway --frame gateway
cd simplegateway
jzero gen
go mod tidy
go run main.go server

rpc

jzero new simplerpc --frame rpc
cd simplerpc
jzero gen
go mod tidy
go run main.go server