mirror of
https://github.com/Miasmusa/Shadow.git
synced 2024-11-14 19:04:54 -05:00
the url fix
This commit is contained in:
parent
494f4ec502
commit
6996805f9a
1 changed files with 3 additions and 3 deletions
|
@ -19,9 +19,9 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
public class ShadowAPIWrapper {
|
||||
public static final String BASE_DOMAIN = "localhost:8080";
|
||||
public static final String BASE_URL = "http://" + BASE_DOMAIN;
|
||||
public static final String BASE_WS = "ws://" + BASE_DOMAIN;
|
||||
public static final String BASE_DOMAIN = "api.shadowclient.cf";
|
||||
public static final String BASE_URL = "https://" + BASE_DOMAIN;
|
||||
public static final String BASE_WS = "wss://" + BASE_DOMAIN;
|
||||
static String authKey = "";
|
||||
static HttpClient client = HttpClient.newBuilder().followRedirects(HttpClient.Redirect.ALWAYS).build();
|
||||
static Gson gson = new Gson();
|
||||
|
|
Loading…
Reference in a new issue