From 732576bfb4b162978e7012e8e5ec2b0426ca9878 Mon Sep 17 00:00:00 2001 From: rmanach Date: Thu, 8 May 2025 12:00:19 +0200 Subject: [PATCH] fix default URL --- src/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.py b/src/client.py index 94220e6..c64e085 100644 --- a/src/client.py +++ b/src/client.py @@ -16,7 +16,7 @@ from sseclient import SSEClient from .exceptions import UnauthorizedException, WhereIsException -API_DEFAULT_URL = "https://api-whereis.thegux.fr" +API_DEFAULT_URL = "https://api.locame.duckdns.org" __all__ = ["Client", "OrderField"]