Skip to content
This repository was archived by the owner on Feb 4, 2021. It is now read-only.

Commit 09f0342

Browse files
committed
add ping service
1 parent a1e260c commit 09f0342

12 files changed

+454
-3
lines changed

api/entries.validator.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/oauth.validator.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/ping.pb.go

Lines changed: 190 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/ping.pb.gw.go

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/ping.swagger.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"title": "ping.proto",
5+
"version": "version not set"
6+
},
7+
"schemes": [
8+
"http",
9+
"https"
10+
],
11+
"consumes": [
12+
"application/json"
13+
],
14+
"produces": [
15+
"application/json"
16+
],
17+
"paths": {
18+
"/ping": {
19+
"get": {
20+
"operationId": "Ping",
21+
"responses": {
22+
"200": {
23+
"description": "",
24+
"schema": {
25+
"$ref": "#/definitions/prolab_accountsPong"
26+
}
27+
}
28+
},
29+
"tags": [
30+
"PingService"
31+
]
32+
}
33+
}
34+
},
35+
"definitions": {
36+
"prolab_accountsPong": {
37+
"type": "object",
38+
"properties": {
39+
"pong": {
40+
"type": "string"
41+
}
42+
}
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)