mirror of
https://github.com/clearml/clearml-server
synced 2025-02-07 13:33:42 +00:00
7 lines
167 B
Python
7 lines
167 B
Python
from service_repo import APICall, endpoint
|
|
|
|
|
|
@endpoint("debug.ping")
|
|
def ping(call: APICall, _, __):
|
|
call.result.data = {"msg": "Because it trains cats and dogs"}
|