1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-12 22:07:47 +02:00

Add examples

This commit is contained in:
Asim Aslam
2020-12-26 15:17:20 +00:00
parent 273bab5dd7
commit a34c70de0e
320 changed files with 20803 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import requests
import json
import proxy
def main():
response = proxy.http_call("/greeter", {"name": "John"})
print response.text
if __name__ == "__main__":
main()