Changing the endpoint to be caught from an environment variable.

This commit is contained in:
2022-02-17 09:52:34 -03:00
parent ad34f46e70
commit 43c2564f97
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class AutoHotKey:
ep: str = ""
def __init__ (self):
self.ep = "https://localhost:8443"
self.ep = os.environ.get("REPLAY_ADDR")
def __request_raw_post__ (self, path: str, data: str = ""):