Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
fuwensun committed Jul 11, 2020
1 parent 69c66dd commit 4f60e44
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 55 deletions.
20 changes: 10 additions & 10 deletions eApi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@ http://localhost:9000/docs
http
```
# 使用 http 方法 GET /v1/ping
curl localhost:8080/v1/ping -w "\n"
curl localhost:8080/v1/ping
# 使用 http 方法 GET /v1/ping, 参数 message=xxx
curl localhost:8080/v1/ping?message=xxx -w "\n"
curl localhost:8080/v1/ping?message=xxx
# 使用 http 方法 POST /v1/users, 参数 name=xxx sex=0
curl -X POST -d "name=xxx&sex=1" localhost:8080/v1/users -w "\n"
# 使用 http 方法 PUT /v1/users, 参数 uid=123 name=yyy sex=1
curl -X PUT -d "name=xxx&sex=1" localhost:8080/v1/users/123 -w "\n"
curl -X POST -d "name=xxx&sex=1" localhost:8080/v1/users
# 使用 http 方法 GET /v1/users, 参数 uid=123
curl -X GET localhost:8080/v1/users/123 -w "\n"
curl -X GET localhost:8080/v1/users?uid=123 -w "\n"
curl -X GET localhost:8080/v1/users/123
curl -X GET localhost:8080/v1/users?uid=123
# 使用 http 方法 PUT /v1/users, 参数 uid=123 name=yyy sex=1
curl -X PUT -d "name=xxx&sex=1" localhost:8080/v1/users/123
# 使用 http 方法 DELETE /v1/users, 参数 uid=123
curl -X DELETE localhost:8080/v1/users/123 -w "\n"
curl -X DELETE localhost:8080/v1/users/123
```

grpc
Expand Down Expand Up @@ -92,7 +92,7 @@ gateway
```
curl -X GET localhost:8081/v1/ping
curl -X GET localhost:8081/v1/ping?Message=xxx
curl -X GET localhost:8081/v1/ping?message=xxx
curl -X POST -d '{"name":"xxx","sex":1}' localhost:8081/v1/users
Expand Down
6 changes: 3 additions & 3 deletions eConf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ go run . & -cfgpath=../configs

http
```
# 使用 http 方法 GET /ping
# 使用 http 方法 GET /ping
curl localhost:8080/ping
# 使用 http 方法 GET /ping, 参数 message=xxx
Expand All @@ -29,7 +29,7 @@ grpc
# 获取 grpc 方法列表
grpcurl -plaintext localhost:50051 list
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"Message": "xxx"}
grpcurl -plaintext -d '{"Message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"message": "xxx"}
grpcurl -plaintext -d '{"message": "xxx"}' localhost:50051 service.goms.User/Ping
```

4 changes: 2 additions & 2 deletions eGrpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ grpc
# 获取 grpc 方法列表
grpcurl -plaintext localhost:50051 list
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"Message": "xxx"}
grpcurl -plaintext -d '{"Message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"message": "xxx"}
grpcurl -plaintext -d '{"message": "xxx"}' localhost:50051 service.goms.User/Ping
```

4 changes: 2 additions & 2 deletions eMysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ grpc
# 获取 grpc 方法列表
grpcurl -plaintext localhost:50051 list
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"Message": "xxx"}
grpcurl -plaintext -d '{"Message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"message": "xxx"}
grpcurl -plaintext -d '{"message": "xxx"}' localhost:50051 service.goms.User/Ping
```

38 changes: 19 additions & 19 deletions eRedis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,43 +18,43 @@ go run . & -cfgpath=../configs
http
```
# 使用 http 方法 GET /ping
curl localhost:8080/ping
curl localhost:8080/v1/ping
# 使用 http 方法 GET /ping, 参数 message=xxx
curl localhost:8080/ping?message=xxx
curl localhost:8080/v1/ping?message=xxx
# 使用 http 方法 POST /users, 参数 name=xxx sex=0
curl -X POST -d "uid=123&name=xxx&sex=1" localhost:8080/users
# 使用 http 方法 PUT /users, 参数 uid=123 name=yyy sex=1
curl -X PUT -d "name=xxx&sex=1" localhost:8080/users/123
curl -X POST -d "name=xxx&sex=1" localhost:8080/v1/users
# 使用 http 方法 GET /users, 参数 uid=123
curl -X GET localhost:8080/users/123
curl -X GET localhost:8080/users?uid=123
curl -X GET localhost:8080/v1/users/123
curl -X GET localhost:8080/v1/users?uid=123
# 使用 http 方法 PUT /users, 参数 uid=123 name=yyy sex=1
curl -X PUT -d "name=xxx&sex=1" localhost:8080/v1/users/123
# 使用 http 方法 DELETE /users, 参数 uid=123
curl -X DELETE localhost:8080/users/123
curl -X DELETE localhost:8080/v1/users/123
```

grpc
```
# 获取 grpc 方法列表
grpcurl -plaintext localhost:50051 list
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"Message": "xxx"}
grpcurl -plaintext -d '{"Message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"message": "xxx"}
grpcurl -plaintext -d '{"message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/CreateUser, 参数 {"Name": "xxx","Sex":"0"}
grpcurl -plaintext -d '{"Name": "xxx","Sex":"0"}' localhost:50051 service.goms.User/CreateUser
# 使用 grpc 方法 service.goms.User/CreateUser, 参数 {"name": "xxx","sex":"0"}
grpcurl -plaintext -d '{"name": "xxx","sex":"0"}' localhost:50051 service.goms.User/CreateUser
# 使用 grpc 方法 service.goms.User/UpdateUser, 参数 {"Uid":"123","xxx":"name","Sex":"1"}
grpcurl -plaintext -d '{"Uid":"123","xxx":"name","Sex":"1"}' localhost:50051 service.goms.User/UpdateUser
# 使用 grpc 方法 service.goms.User/ReadUser, 参数 {"uid":"123"}
grpcurl -plaintext -d '{"uid":"123"}' localhost:50051 service.goms.User/ReadUser
# 使用 grpc 方法 service.goms.User/ReadUser, 参数 {"Uid":"123"}
grpcurl -plaintext -d '{"Uid":"123"}' localhost:50051 service.goms.User/ReadUser
# 使用 grpc 方法 service.goms.User/UpdateUser, 参数 {"uid":"123","name":"xxx","sex":"1"}
grpcurl -plaintext -d '{"uid":"123","name":"xxx","sex":"1"}' localhost:50051 service.goms.User/UpdateUser
# 使用 grpc 方法 service.goms.User/DeleteUser, 参数 {"Uid":"123"}
grpcurl -plaintext -d '{"Uid":"123"}' localhost:50051 service.goms.User/DeleteUser
# 使用 grpc 方法 service.goms.User/DeleteUser, 参数 {"uid":"123"}
grpcurl -plaintext -d '{"uid":"123"}' localhost:50051 service.goms.User/DeleteUser
```

38 changes: 19 additions & 19 deletions eTest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,43 +30,43 @@ go run . & -cfgpath=../configs
http
```
# 使用 http 方法 GET /ping
curl localhost:8080/ping -w "\n"
curl localhost:8080/v1/ping
# 使用 http 方法 GET /ping, 参数 message=xxx
curl localhost:8080/ping?message=xxx -w "\n"
curl localhost:8080/v1/ping?message=xxx
# 使用 http 方法 POST /users, 参数 name=xxx sex=0
curl -X POST -d "name=xxx&sex=1" localhost:8080/users -w "\n"
# 使用 http 方法 PUT /users, 参数 uid=123 name=yyy sex=1
curl -X PUT -d "name=xxx&sex=1" localhost:8080/users/123 -w "\n"
curl -X POST -d "name=xxx&sex=1" localhost:8080/v1/users
# 使用 http 方法 GET /users, 参数 uid=123
curl -X GET localhost:8080/users/123 -w "\n"
curl -X GET localhost:8080/users?uid=123 -w "\n"
curl -X GET localhost:8080/v1/users/123
curl -X GET localhost:8080/v1/users?uid=123
# 使用 http 方法 PUT /users, 参数 uid=123 name=yyy sex=1
curl -X PUT -d "name=xxx&sex=1" localhost:8080/v1/users/123
# 使用 http 方法 DELETE /users, 参数 uid=123
curl -X DELETE localhost:8080/users/123 -w "\n"
curl -X DELETE localhost:8080/v1/users/123
```

grpc
```
# 获取 grpc 方法列表
grpcurl -plaintext localhost:50051 list
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"Message": "xxx"}
grpcurl -plaintext -d '{"Message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/Ping, 参数 {"message": "xxx"}
grpcurl -plaintext -d '{"message": "xxx"}' localhost:50051 service.goms.User/Ping
# 使用 grpc 方法 service.goms.User/CreateUser, 参数 {"Name": "xxx","Sex":"0"}
grpcurl -plaintext -d '{"Name": "xxx","Sex":"0"}' localhost:50051 service.goms.User/CreateUser
# 使用 grpc 方法 service.goms.User/CreateUser, 参数 {"name": "xxx","sex":"0"}
grpcurl -plaintext -d '{"name": "xxx","sex":"0"}' localhost:50051 service.goms.User/CreateUser
# 使用 grpc 方法 service.goms.User/UpdateUser, 参数 {"Uid":"123","xxx":"name","Sex":"1"}
grpcurl -plaintext -d '{"Uid":"123","xxx":"name","Sex":"1"}' localhost:50051 service.goms.User/UpdateUser
# 使用 grpc 方法 service.goms.User/ReadUser, 参数 {"uid":"123"}
grpcurl -plaintext -d '{"uid":"123"}' localhost:50051 service.goms.User/ReadUser
# 使用 grpc 方法 service.goms.User/ReadUser, 参数 {"Uid":"123"}
grpcurl -plaintext -d '{"Uid":"123"}' localhost:50051 service.goms.User/ReadUser
# 使用 grpc 方法 service.goms.User/UpdateUser, 参数 {"uid":"123","name":"xxx","sex":"1"}
grpcurl -plaintext -d '{"uid":"123","name":"xxx","sex":"1"}' localhost:50051 service.goms.User/UpdateUser
# 使用 grpc 方法 service.goms.User/DeleteUser, 参数 {"Uid":"123"}
grpcurl -plaintext -d '{"Uid":"123"}' localhost:50051 service.goms.User/DeleteUser
# 使用 grpc 方法 service.goms.User/DeleteUser, 参数 {"uid":"123"}
grpcurl -plaintext -d '{"uid":"123"}' localhost:50051 service.goms.User/DeleteUser
```

0 comments on commit 4f60e44

Please sign in to comment.