parallel resource downloading

This commit is contained in:
Nordup 2024-12-07 13:49:51 +04:00
parent fb587a6d30
commit fe5244d458
11 changed files with 116 additions and 40 deletions

View file

@ -7,7 +7,7 @@ const url_regex: String = "^(https?)://[^\\s()<>]+(?:\\([\\w\\d]+\\)|([^[:punct:
static func join(base_url: String, path: String) -> String:
var url = ""
if path.is_empty():
url = base_url
url = ""
elif path.begins_with("http"):
url = path
else: