From aab078225219e2cc0f5508393cd2c5492d696a39 Mon Sep 17 00:00:00 2001 From: jhalitaksoy Date: Wed, 30 Jun 2021 22:23:38 +0300 Subject: [PATCH] updated server url --- src/service/http_service.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/service/http_service.ts b/src/service/http_service.ts index 98a7a52..106f3ad 100644 --- a/src/service/http_service.ts +++ b/src/service/http_service.ts @@ -1,5 +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/" interface HttpService { get: (route: string, succes: () => any, error: () => any) => any