Updates ServerManager to use prod URL of the API.

This commit is contained in:
Dylan Sarrazyn
2024-09-11 11:39:52 +02:00
parent 3641c934ac
commit fc4bee6f85
+1 -1
View File
@@ -4,7 +4,7 @@ signal request_completed(code: int, body: Dictionary)
@onready var http_request: HTTPRequest = $HTTPRequest
@onready var loading_rect: TextureRect = $TextureRect
const URL: String = "https://uqkpbayw1k.execute-api.eu-west-3.amazonaws.com/dev/"
const URL: String = "https://uqkpbayw1k.execute-api.eu-west-3.amazonaws.com/prod/"
# Response from the last request
var code: int