7 lines
188 B
Python
7 lines
188 B
Python
"""Fleet status checks."""
|
|
|
|
|
|
def fleet_status(service_name):
|
|
# Placeholder until the real deploy API client is wired up.
|
|
return f"{service_name}: status check not yet implemented"
|