Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 286 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 286 Bytes

go-gin-jsonrpc

Very basic and simple jsonrpc server implementation for golang and gin-gonic

Example of usage:

  rpc := TestRPC{}
  router := gin.Default()
  router.POST("/", func(c *gin.Context) { goginjsonrpc.ProcessJsonRPC(c, &rpc); })
  router.Run("127.0.0.1:8000")