mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
Engine improvements
Add back events tests Fill out SMTP comms handler Add getcommunicationrelayers gRPC command
This commit is contained in:
@@ -243,6 +243,22 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/v1/getcommunicationrelayers": {
|
||||
"get": {
|
||||
"operationId": "GetCommunicationRelayers",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "A successful response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/gctrpcGetCommunicationRelayersResponse"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"GoCryptoTrader"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/v1/getconfig": {
|
||||
"get": {
|
||||
"operationId": "GetConfig",
|
||||
@@ -960,6 +976,19 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"gctrpcCommunicationRelayer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"format": "boolean"
|
||||
},
|
||||
"connected": {
|
||||
"type": "boolean",
|
||||
"format": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"gctrpcConditionParams": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -1075,6 +1104,17 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"gctrpcGetCommunicationRelayersResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"communication_relayers": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/gctrpcCommunicationRelayer"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"gctrpcGetConfigResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user