From 3600ef7341eaf3815f6162788ee2d73071e38171 Mon Sep 17 00:00:00 2001 From: jhalitaksoy Date: Fri, 2 Jul 2021 23:18:52 +0300 Subject: [PATCH] updated server url --- src/service/http_service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/service/http_service.ts b/src/service/http_service.ts index 3d06988..106f3ad 100644 --- a/src/service/http_service.ts +++ b/src/service/http_service.ts @@ -1,8 +1,8 @@ -export const serverAdress = "http://localhost:5000" -export const wsServerAdress = "ws://localhost:5000" +//export const serverAdress = "http://localhost:5000" +//export const wsServerAdress = "ws://localhost:5000" -//export const serverAdress = "https://halitaksoy.com/mancala" -//export const wsServerAdress = "wss://halitaksoy.com/mancala/" +export const serverAdress = "https://halitaksoy.com/mancala" +export const wsServerAdress = "wss://halitaksoy.com/mancala/" interface HttpService { get: (route: string, succes: () => any, error: () => any) => any