t1nder-cli-simulator 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +16 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -18,19 +18,33 @@ const CLIENT_URL = `https://t1nder.vercel.app/`
|
|
|
18
18
|
|
|
19
19
|
const SERVER_LIST = [
|
|
20
20
|
{
|
|
21
|
-
name: 'Server 1 (
|
|
21
|
+
name: 'Server 1 (Ha Noi)',
|
|
22
22
|
config: {
|
|
23
23
|
ai: 'https://t1nder.vercel.app/api/ai',
|
|
24
24
|
image: 'https://t1nder.vercel.app/api/image',
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
name: 'Server 2 (
|
|
28
|
+
name: 'Server 2 (Thanh Hoa)',
|
|
29
29
|
config: {
|
|
30
30
|
ai: 'https://t1nder-vip.vercel.app/api/ai',
|
|
31
31
|
image: 'https://t1nder-vip.vercel.app/api/image',
|
|
32
32
|
},
|
|
33
33
|
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Server 3 (Thai Binh)',
|
|
36
|
+
config: {
|
|
37
|
+
ai: 'https://tinder-server-2.vercel.app/api/ai',
|
|
38
|
+
image: 'https://tinder-server-2.vercel.app/api/image',
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Server 4 (Phu Tho)',
|
|
43
|
+
config: {
|
|
44
|
+
ai: 'https://tinder-server-3.vercel.app/api/ai',
|
|
45
|
+
image: 'https://tinder-server-3.vercel.app/api/image',
|
|
46
|
+
},
|
|
47
|
+
},
|
|
34
48
|
]
|
|
35
49
|
|
|
36
50
|
let CURRENT_API_ENDPOINT = ''
|