Ping
The /ping endpoint returns a plain text pong response. This can be used for liveliness and/or latency checks.
curl http://127.0.0.1:8080/pingfrom core_client import Client
client = Client(
base_url="http://127.0.0.1:8080"
)
client.login()
core_ping = client.ping()
print(core_ping)This is currently not implemented.
Last updated
Was this helpful?
