Add placeholder fleet status check

This commit is contained in:
Marcus Lindqvist 2026-01-20 15:40:00 +00:00
parent 388d72ecf7
commit 9bc6c9e0b9
2 changed files with 11 additions and 0 deletions

6
harborwatch/checks.py Normal file
View File

@ -0,0 +1,6 @@
"""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"

5
tests/test_checks.py Normal file
View File

@ -0,0 +1,5 @@
from harborwatch.checks import fleet_status
def test_placeholder_status():
assert "not yet implemented" in fleet_status("routeforge")