Remove aiologger

This commit is contained in:
2022-02-12 13:05:13 +03:00
parent d73afc9e0a
commit 6e307b8067
3 changed files with 5 additions and 23 deletions

View File

@@ -1,11 +1,8 @@
import os
import httpx
response = httpx.get(
"http://localhost:8080/healthcheck",
headers={"Authorization": os.environ["API_KEY"]},
)
print(f"HEALTHCHECK STATUS: {response.status_code}")
exit(0 if response.status_code == 200 else 1)