rename postgres container

This commit is contained in:
2026-06-29 00:39:01 +07:00
parent 36575fd0fc
commit 3ec2853df6
5 changed files with 754 additions and 2 deletions
@@ -0,0 +1,113 @@
{
"swagger": "2.0",
"info": {
"title": "main.proto",
"version": "version not set"
},
"tags": [
{
"name": "EveningDetectiveServer"
}
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/api/echo": {
"post": {
"operationId": "EveningDetectiveServer_Echo",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/evening_detective_serverEchoRsp"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/rpcStatus"
}
}
},
"parameters": [
{
"name": "text",
"in": "query",
"required": false,
"type": "string"
}
],
"tags": [
"EveningDetectiveServer"
]
}
},
"/api/ping": {
"get": {
"operationId": "EveningDetectiveServer_Ping",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/evening_detective_serverPingRsp"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/rpcStatus"
}
}
},
"tags": [
"EveningDetectiveServer"
]
}
}
},
"definitions": {
"evening_detective_serverEchoRsp": {
"type": "object",
"properties": {
"text": {
"type": "string"
}
}
},
"evening_detective_serverPingRsp": {
"type": "object"
},
"protobufAny": {
"type": "object",
"properties": {
"@type": {
"type": "string"
}
},
"additionalProperties": {}
},
"rpcStatus": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/protobufAny"
}
}
}
}
}
}