mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 07:05:36 +01:00
9 lines
179 B
Python
9 lines
179 B
Python
import httpx
|
|
|
|
|
|
response = httpx.get(
|
|
"http://localhost:8080/healthcheck",
|
|
)
|
|
print(f"HEALTHCHECK STATUS: {response.status_code}")
|
|
exit(0 if response.status_code == 200 else 1)
|