diff --git a/routers/ip.py b/routers/ip.py index ffdad0d..b801dbf 100644 --- a/routers/ip.py +++ b/routers/ip.py @@ -172,6 +172,7 @@ async def get_ip(request: Request): response = await client.get(f'https://ipinfo.io/{client_ip}') html = response.text + logging.info(f'html: {html}') ipinfo = IPInfo(html) return ipinfo.dict() \ No newline at end of file