fixed IPs back to local

This commit is contained in:
2026-05-14 23:18:11 -04:00
parent 63d3806936
commit 9fbe795660
3 changed files with 12 additions and 10 deletions

View File

@@ -7,8 +7,10 @@ namespace RelayClient;
public class ServerAPI
{
static HttpClient client = new HttpClient { BaseAddress = new Uri("http://192.168.1.85:5000/") };
static HttpClient core = new HttpClient { BaseAddress = new Uri("http://192.168.1.85:1337/") };
static HttpClient client = new HttpClient { BaseAddress = new Uri("http://127.0.0.1:5000/") };
static HttpClient core = new HttpClient { BaseAddress = new Uri("http://127.0.0.1:1337/") };
// static HttpClient client = new HttpClient { BaseAddress = new Uri("http://192.168.1.92:5000/") };
// static HttpClient core = new HttpClient { BaseAddress = new Uri("http://192.168.1.92:1337/") };
public static async Task setupClient()
{