https://github.com/dakimura/gorilla_practice
https://github.com/dakimura/gorilla_practice
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dakimura/gorilla_practice
- Owner: dakimura
- Created: 2018-11-06T09:55:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-21T09:11:19.000Z (over 6 years ago)
- Last Synced: 2025-01-29T07:27:02.767Z (4 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Example request
```
curl -X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "1.0", "method": "HelloService.SayHi", "params": [{"Who":"Joe"}], "id": 1}' \
"http://localhost:8888/rpc"{"result":{"Message":"Hi, Joe!"},"error":null,"id":1}
```